toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowAllDomains = this.allowAllDomains;
final allowAmpTraffic = this.allowAmpTraffic;
final allowedDomains = this.allowedDomains;
final challengeSecurityPreference = this.challengeSecurityPreference;
final challengeSettings = this.challengeSettings;
final integrationType = this.integrationType;
return {
'allowAllDomains': ?allowAllDomains,
'allowAmpTraffic': ?allowAmpTraffic,
'allowedDomains': ?allowedDomains,
'challengeSecurityPreference': ?challengeSecurityPreference,
'challengeSettings': ?challengeSettings,
'integrationType': ?integrationType,
};
}