ListStoresRequest constructor

ListStoresRequest({
  1. String? name,
  2. Iterable<String>? tags,
  3. String? ownerId,
})

Implementation

factory ListStoresRequest({
  $core.String? name,
  $core.Iterable<$core.String>? tags,
  $core.String? ownerId,
}) {
  final _result = create();
  if (name != null) {
    _result.name = name;
  }
  if (tags != null) {
    _result.tags.addAll(tags);
  }
  if (ownerId != null) {
    _result.ownerId = ownerId;
  }
  return _result;
}