copyWith method
UpdateTermsOfService
copyWith({
- String? termsOfServiceId,
- TermsOfService? termsOfService,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateTermsOfService copyWith({
String? termsOfServiceId,
TermsOfService? termsOfService,
dynamic extra,
int? clientId,
}) =>
UpdateTermsOfService(
termsOfServiceId: termsOfServiceId ?? this.termsOfServiceId,
termsOfService: termsOfService ?? this.termsOfService,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);