ContractorProto_SearchRequest constructor

ContractorProto_SearchRequest({
  1. String? name,
  2. @Deprecated('This field is deprecated.') int? clientId,
})

Implementation

factory ContractorProto_SearchRequest({
  $core.String? name,
  @$core.Deprecated('This field is deprecated.') $core.int? clientId,
}) {
  final result = create();
  if (name != null) result.name = name;
  if (clientId != null) result.clientId = clientId;
  return result;
}