toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (accountName != null) 'accountName': accountName!,
  if (kind != null) 'kind': kind!,
  if (profileName != null) 'profileName': profileName!,
  if (timezone != null) 'timezone': timezone!,
  if (webpropertyName != null) 'webpropertyName': webpropertyName!,
  if (websiteUrl != null) 'websiteUrl': websiteUrl!,
};