toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (maxIops != null) 'maxIops': maxIops!,
  if (maxReadIops != null) 'maxReadIops': maxReadIops!,
  if (maxReadThroughputBps != null)
    'maxReadThroughputBps': maxReadThroughputBps!,
  if (maxWriteIops != null) 'maxWriteIops': maxWriteIops!,
  if (maxWriteThroughputBps != null)
    'maxWriteThroughputBps': maxWriteThroughputBps!,
};