ExchangedPeeringRoute.fromJson constructor

ExchangedPeeringRoute.fromJson(
  1. Map json_
)

Implementation

ExchangedPeeringRoute.fromJson(core.Map json_)
  : this(
      destRange: json_['destRange'] as core.String?,
      imported: json_['imported'] as core.bool?,
      nextHopRegion: json_['nextHopRegion'] as core.String?,
      priority: json_['priority'] as core.int?,
      type: json_['type'] as core.String?,
    );