toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final account = this.account;
final kind = this.kind;
final profile = this.profile;
final webproperty = this.webproperty;
return {
'account': ?account,
'kind': ?kind,
'profile': ?profile,
'webproperty': ?webproperty,
};
}