toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountName = this.accountName;
final accountNumber = this.accountNumber;
final name = this.name;
final organizationInfo = this.organizationInfo;
final permissionLevel = this.permissionLevel;
final primaryOwner = this.primaryOwner;
final role = this.role;
final type = this.type;
final verificationState = this.verificationState;
final vettedState = this.vettedState;
return {
'accountName': ?accountName,
'accountNumber': ?accountNumber,
'name': ?name,
'organizationInfo': ?organizationInfo,
'permissionLevel': ?permissionLevel,
'primaryOwner': ?primaryOwner,
'role': ?role,
'type': ?type,
'verificationState': ?verificationState,
'vettedState': ?vettedState,
};
}