ContractorProto_SearchRequest constructor
ContractorProto_SearchRequest({
- String? name,
- @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;
}