copyWith method

AcceptTermsOfService copyWith({
  1. String? termsOfServiceId,
})

Implementation

AcceptTermsOfService copyWith({
  String? termsOfServiceId,
}) => AcceptTermsOfService(
  termsOfServiceId: termsOfServiceId ?? this.termsOfServiceId,
);