NetworkRoutingConfig.fromJson constructor

NetworkRoutingConfig.fromJson(
  1. Map json_
)

Implementation

NetworkRoutingConfig.fromJson(core.Map json_)
    : this(
        bgpAlwaysCompareMed: json_['bgpAlwaysCompareMed'] as core.bool?,
        bgpBestPathSelectionMode:
            json_['bgpBestPathSelectionMode'] as core.String?,
        bgpInterRegionCost: json_['bgpInterRegionCost'] as core.String?,
        effectiveBgpAlwaysCompareMed:
            json_['effectiveBgpAlwaysCompareMed'] as core.bool?,
        effectiveBgpInterRegionCost:
            json_['effectiveBgpInterRegionCost'] as core.String?,
        routingMode: json_['routingMode'] as core.String?,
      );