toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final accountName = this.accountName;
final etag = this.etag;
final kind = this.kind;
final profileId = this.profileId;
final subAccountId = this.subAccountId;
final subAccountName = this.subAccountName;
final userName = this.userName;
return {
'accountId': ?accountId,
'accountName': ?accountName,
'etag': ?etag,
'kind': ?kind,
'profileId': ?profileId,
'subAccountId': ?subAccountId,
'subAccountName': ?subAccountName,
'userName': ?userName,
};
}