ListMatchesRequest constructor

ListMatchesRequest({
  1. Int32Value? limit,
  2. BoolValue? authoritative,
  3. StringValue? label,
  4. Int32Value? minSize,
  5. Int32Value? maxSize,
  6. 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;
}