AcceptTermsOfServiceResponse.fromJson constructor

AcceptTermsOfServiceResponse.fromJson(
  1. Map json_
)

Implementation

AcceptTermsOfServiceResponse.fromJson(core.Map json_)
  : this(
      termsOfServiceAgreementState:
          json_.containsKey('termsOfServiceAgreementState')
              ? TermsOfServiceAgreementState.fromJson(
                json_['termsOfServiceAgreementState']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );