ApplicationAgreement constructor

ApplicationAgreement({
  1. AgreementOlderThan? olderThan,
  2. AgreementPrivacyPolicy? privacyPolicy,
  3. AgreementTermsOfService? termsOfService,
})

Returns a new ApplicationAgreement instance.

Implementation

ApplicationAgreement({
  this.olderThan,
  this.privacyPolicy,
  this.termsOfService,
});