fromJson static method

ApplicationAgreement? fromJson(
  1. Map<String, dynamic>? json
)

Returns a new ApplicationAgreement instance and imports its values from json if it's non-null, null if json is null.

Implementation

static ApplicationAgreement? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return ApplicationAgreement(
    olderThan: AgreementOlderThan.fromJson(json[r'olderThan']),
    privacyPolicy: AgreementPrivacyPolicy.fromJson(json[r'privacyPolicy']),
    termsOfService: AgreementTermsOfService.fromJson(json[r'termsOfService']),
  );
}