toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final exportPsc = this.exportPsc;
  final labels = this.labels;
  final name = this.name;
  final policyMode = this.policyMode;
  final presetTopology = this.presetTopology;
  final routeTables = this.routeTables;
  final routingVpcs = this.routingVpcs;
  final spokeSummary = this.spokeSummary;
  final state = this.state;
  final uniqueId = this.uniqueId;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'exportPsc': ?exportPsc,
    'labels': ?labels,
    'name': ?name,
    'policyMode': ?policyMode,
    'presetTopology': ?presetTopology,
    'routeTables': ?routeTables,
    'routingVpcs': ?routingVpcs,
    'spokeSummary': ?spokeSummary,
    'state': ?state,
    'uniqueId': ?uniqueId,
    'updateTime': ?updateTime,
  };
}