toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final id = this.id;
final internalWebPropertyId = this.internalWebPropertyId;
final kind = this.kind;
final level = this.level;
final name = this.name;
final profiles = this.profiles;
final starred = this.starred;
final websiteUrl = this.websiteUrl;
return {
'id': ?id,
'internalWebPropertyId': ?internalWebPropertyId,
'kind': ?kind,
'level': ?level,
'name': ?name,
'profiles': ?profiles,
'starred': ?starred,
'websiteUrl': ?websiteUrl,
};
}