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