toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final iops = this.iops;
  final readIops = this.readIops;
  final writeIops = this.writeIops;
  return {'iops': ?iops, 'readIops': ?readIops, 'writeIops': ?writeIops};
}