toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final creationTimestamp = this.creationTimestamp;
final description = this.description;
final features = this.features;
final id = this.id;
final kind = this.kind;
final location = this.location;
final name = this.name;
final profileType = this.profileType;
final selfLink = this.selfLink;
final selfLinkWithId = this.selfLinkWithId;
return {
'creationTimestamp': ?creationTimestamp,
'description': ?description,
'features': ?features,
'id': ?id,
'kind': ?kind,
'location': ?location,
'name': ?name,
'profileType': ?profileType,
'selfLink': ?selfLink,
'selfLinkWithId': ?selfLinkWithId,
};
}