PerformanceConfig.fromJson constructor

PerformanceConfig.fromJson(
  1. Map json_
)

Implementation

PerformanceConfig.fromJson(core.Map json_)
  : this(
      fixedIops: json_.containsKey('fixedIops')
          ? FixedIOPS.fromJson(
              json_['fixedIops'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      iopsPerTb: json_.containsKey('iopsPerTb')
          ? IOPSPerTB.fromJson(
              json_['iopsPerTb'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );