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