InterconnectCircuitInfo.fromJson constructor

InterconnectCircuitInfo.fromJson(
  1. Map json_
)

Implementation

InterconnectCircuitInfo.fromJson(core.Map json_)
    : this(
        customerDemarcId: json_.containsKey('customerDemarcId')
            ? json_['customerDemarcId'] as core.String
            : null,
        googleCircuitId: json_.containsKey('googleCircuitId')
            ? json_['googleCircuitId'] as core.String
            : null,
        googleDemarcId: json_.containsKey('googleDemarcId')
            ? json_['googleDemarcId'] as core.String
            : null,
      );