toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appId = this.appId;
final appInstallType = this.appInstallType;
final appSource = this.appSource;
final appType = this.appType;
final browserDeviceCount = this.browserDeviceCount;
final description = this.description;
final disabled = this.disabled;
final displayName = this.displayName;
final homepageUri = this.homepageUri;
final osUserCount = this.osUserCount;
final permissions = this.permissions;
final riskAssessment = this.riskAssessment;
return {
'appId': ?appId,
'appInstallType': ?appInstallType,
'appSource': ?appSource,
'appType': ?appType,
'browserDeviceCount': ?browserDeviceCount,
'description': ?description,
'disabled': ?disabled,
'displayName': ?displayName,
'homepageUri': ?homepageUri,
'osUserCount': ?osUserCount,
'permissions': ?permissions,
'riskAssessment': ?riskAssessment,
};
}