QosPolicy.fromJson constructor

QosPolicy.fromJson(
  1. Map json_
)

Implementation

QosPolicy.fromJson(core.Map json_)
    : this(
        bandwidthGbps: json_.containsKey('bandwidthGbps')
            ? (json_['bandwidthGbps'] as core.num).toDouble()
            : null,
      );