toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final destRange = this.destRange;
final imported = this.imported;
final nextHopRegion = this.nextHopRegion;
final priority = this.priority;
final type = this.type;
return {
'destRange': ?destRange,
'imported': ?imported,
'nextHopRegion': ?nextHopRegion,
'priority': ?priority,
'type': ?type,
};
}