PerformanceLimits.fromJson constructor

PerformanceLimits.fromJson(
  1. Map json_
)

Implementation

PerformanceLimits.fromJson(core.Map json_)
    : this(
        maxIops: json_['maxIops'] as core.String?,
        maxReadIops: json_['maxReadIops'] as core.String?,
        maxReadThroughputBps: json_['maxReadThroughputBps'] as core.String?,
        maxWriteIops: json_['maxWriteIops'] as core.String?,
        maxWriteThroughputBps: json_['maxWriteThroughputBps'] as core.String?,
      );