copyWith method
Implementation
UpdateTermsOfService copyWith({
String? termsOfServiceId,
TermsOfService? termsOfService,
}) => UpdateTermsOfService(
termsOfServiceId: termsOfServiceId ?? this.termsOfServiceId,
termsOfService: termsOfService ?? this.termsOfService,
);