toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final filter = this.filter;
final interconnectAttachment = this.interconnectAttachment;
final kind = this.kind;
final labels = this.labels;
final name = this.name;
final network = this.network;
final nextHopIlbIp = this.nextHopIlbIp;
final nextHopOtherRoutes = this.nextHopOtherRoutes;
final priority = this.priority;
final selfLink = this.selfLink;
final updateTime = this.updateTime;
final virtualMachine = this.virtualMachine;
final warnings = this.warnings;
return {
'createTime': ?createTime,
'description': ?description,
'filter': ?filter,
'interconnectAttachment': ?interconnectAttachment,
'kind': ?kind,
'labels': ?labels,
'name': ?name,
'network': ?network,
'nextHopIlbIp': ?nextHopIlbIp,
'nextHopOtherRoutes': ?nextHopOtherRoutes,
'priority': ?priority,
'selfLink': ?selfLink,
'updateTime': ?updateTime,
'virtualMachine': ?virtualMachine,
'warnings': ?warnings,
};
}