UpdateTermsOfService constructor
const
UpdateTermsOfService({
- required String termsOfServiceId,
- required TermsOfService termsOfService,
- dynamic extra,
- int? clientId,
New terms of service must be accepted by the user. If the terms of service are declined, then the deleteAccount method must be called with the reason "Decline ToS update"
Implementation
const UpdateTermsOfService({
required this.termsOfServiceId,
required this.termsOfService,
this.extra,
this.clientId,
});