toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final ipCidrRange = this.ipCidrRange;
  final labels = this.labels;
  final location = this.location;
  final name = this.name;
  final nextHopInterconnectAttachment = this.nextHopInterconnectAttachment;
  final nextHopRouterApplianceInstance = this.nextHopRouterApplianceInstance;
  final nextHopSpoke = this.nextHopSpoke;
  final nextHopVpcNetwork = this.nextHopVpcNetwork;
  final nextHopVpnTunnel = this.nextHopVpnTunnel;
  final priority = this.priority;
  final spoke = this.spoke;
  final state = this.state;
  final type = this.type;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'ipCidrRange': ?ipCidrRange,
    'labels': ?labels,
    'location': ?location,
    'name': ?name,
    'nextHopInterconnectAttachment': ?nextHopInterconnectAttachment,
    'nextHopRouterApplianceInstance': ?nextHopRouterApplianceInstance,
    'nextHopSpoke': ?nextHopSpoke,
    'nextHopVpcNetwork': ?nextHopVpcNetwork,
    'nextHopVpnTunnel': ?nextHopVpnTunnel,
    'priority': ?priority,
    'spoke': ?spoke,
    'state': ?state,
    'type': ?type,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}