GrpcRoute_MethodMatch constructor
GrpcRoute_MethodMatch({
- GrpcRoute_MethodMatch_Type? type,
- String? grpcService,
- String? grpcMethod,
- bool? caseSensitive,
Implementation
factory GrpcRoute_MethodMatch({
GrpcRoute_MethodMatch_Type? type,
$core.String? grpcService,
$core.String? grpcMethod,
$core.bool? caseSensitive,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (grpcService != null) {
$result.grpcService = grpcService;
}
if (grpcMethod != null) {
$result.grpcMethod = grpcMethod;
}
if (caseSensitive != null) {
$result.caseSensitive = caseSensitive;
}
return $result;
}