toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appAutoApprovalEnabled = this.appAutoApprovalEnabled;
final contactInfo = this.contactInfo;
final enabledNotificationTypes = this.enabledNotificationTypes;
final enterpriseDisplayName = this.enterpriseDisplayName;
final enterpriseType = this.enterpriseType;
final googleAuthenticationSettings = this.googleAuthenticationSettings;
final logo = this.logo;
final managedGoogleDomainType = this.managedGoogleDomainType;
final managedGooglePlayAccountsEnterpriseType =
this.managedGooglePlayAccountsEnterpriseType;
final name = this.name;
final primaryColor = this.primaryColor;
final pubsubTopic = this.pubsubTopic;
final signinDetails = this.signinDetails;
final termsAndConditions = this.termsAndConditions;
return {
'appAutoApprovalEnabled': ?appAutoApprovalEnabled,
'contactInfo': ?contactInfo,
'enabledNotificationTypes': ?enabledNotificationTypes,
'enterpriseDisplayName': ?enterpriseDisplayName,
'enterpriseType': ?enterpriseType,
'googleAuthenticationSettings': ?googleAuthenticationSettings,
'logo': ?logo,
'managedGoogleDomainType': ?managedGoogleDomainType,
'managedGooglePlayAccountsEnterpriseType':
?managedGooglePlayAccountsEnterpriseType,
'name': ?name,
'primaryColor': ?primaryColor,
'pubsubTopic': ?pubsubTopic,
'signinDetails': ?signinDetails,
'termsAndConditions': ?termsAndConditions,
};
}