toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final maxIops = this.maxIops;
  final maxReadIops = this.maxReadIops;
  final maxReadThroughputBps = this.maxReadThroughputBps;
  final maxWriteIops = this.maxWriteIops;
  final maxWriteThroughputBps = this.maxWriteThroughputBps;
  return {
    'maxIops': ?maxIops,
    'maxReadIops': ?maxReadIops,
    'maxReadThroughputBps': ?maxReadThroughputBps,
    'maxWriteIops': ?maxWriteIops,
    'maxWriteThroughputBps': ?maxWriteThroughputBps,
  };
}