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