NetworkPerformanceConfig.fromJson constructor

NetworkPerformanceConfig.fromJson(
  1. Map json_
)

Implementation

NetworkPerformanceConfig.fromJson(core.Map json_)
    : this(
        totalEgressBandwidthTier:
            json_.containsKey('totalEgressBandwidthTier')
                ? json_['totalEgressBandwidthTier'] as core.String
                : null,
      );