toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountName = this.accountName;
  final kind = this.kind;
  final profileName = this.profileName;
  final timezone = this.timezone;
  final webpropertyName = this.webpropertyName;
  final websiteUrl = this.websiteUrl;
  return {
    'accountName': ?accountName,
    'kind': ?kind,
    'profileName': ?profileName,
    'timezone': ?timezone,
    'webpropertyName': ?webpropertyName,
    'websiteUrl': ?websiteUrl,
  };
}