toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final childLink = this.childLink;
final created = this.created;
final description = this.description;
final id = this.id;
final importBehavior = this.importBehavior;
final kind = this.kind;
final name = this.name;
final parentLink = this.parentLink;
final profilesLinked = this.profilesLinked;
final schema = this.schema;
final selfLink = this.selfLink;
final type = this.type;
final updated = this.updated;
final uploadType = this.uploadType;
final webPropertyId = this.webPropertyId;
return {
'accountId': ?accountId,
'childLink': ?childLink,
'created': ?created?.toUtc().toIso8601String(),
'description': ?description,
'id': ?id,
'importBehavior': ?importBehavior,
'kind': ?kind,
'name': ?name,
'parentLink': ?parentLink,
'profilesLinked': ?profilesLinked,
'schema': ?schema,
'selfLink': ?selfLink,
'type': ?type,
'updated': ?updated?.toUtc().toIso8601String(),
'uploadType': ?uploadType,
'webPropertyId': ?webPropertyId,
};
}