toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adminEnabled = this.adminEnabled;
final creationTimestamp = this.creationTimestamp;
final description = this.description;
final endpoints = this.endpoints;
final id = this.id;
final kind = this.kind;
final name = this.name;
final reconciling = this.reconciling;
final selfLink = this.selfLink;
final topology = this.topology;
final wireProperties = this.wireProperties;
final wires = this.wires;
return {
'adminEnabled': ?adminEnabled,
'creationTimestamp': ?creationTimestamp,
'description': ?description,
'endpoints': ?endpoints,
'id': ?id,
'kind': ?kind,
'name': ?name,
'reconciling': ?reconciling,
'selfLink': ?selfLink,
'topology': ?topology,
'wireProperties': ?wireProperties,
'wires': ?wires,
};
}