toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (id != null) 'id': id!,
if (internalWebPropertyId != null)
'internalWebPropertyId': internalWebPropertyId!,
if (kind != null) 'kind': kind!,
if (level != null) 'level': level!,
if (name != null) 'name': name!,
if (profiles != null) 'profiles': profiles!,
if (starred != null) 'starred': starred!,
if (websiteUrl != null) 'websiteUrl': websiteUrl!,
};