ListMatchesRequest constructor
ListMatchesRequest({
- Int32Value? limit,
- BoolValue? authoritative,
- StringValue? label,
- Int32Value? minSize,
- Int32Value? maxSize,
- StringValue? query,
Implementation
factory ListMatchesRequest({
$1.Int32Value? limit,
$1.BoolValue? authoritative,
$1.StringValue? label,
$1.Int32Value? minSize,
$1.Int32Value? maxSize,
$1.StringValue? query,
}) {
final _result = create();
if (limit != null) {
_result.limit = limit;
}
if (authoritative != null) {
_result.authoritative = authoritative;
}
if (label != null) {
_result.label = label;
}
if (minSize != null) {
_result.minSize = minSize;
}
if (maxSize != null) {
_result.maxSize = maxSize;
}
if (query != null) {
_result.query = query;
}
return _result;
}