updateTermsOfService property

UpdateTermsOfService? updateTermsOfService

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

UpdateTermsOfService? get updateTermsOfService {
  if (this is UpdateTermsOfService) {
    return this as UpdateTermsOfService;
  }
  return null;
}