toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conditions = this.conditions;
final mappedRouteName = this.mappedRouteName;
final observedGeneration = this.observedGeneration;
final resourceRecords = this.resourceRecords;
final url = this.url;
return {
'conditions': ?conditions,
'mappedRouteName': ?mappedRouteName,
'observedGeneration': ?observedGeneration,
'resourceRecords': ?resourceRecords,
'url': ?url,
};
}