toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deviceName = this.deviceName;
  final existingDisk = this.existingDisk;
  final newDisk = this.newDisk;
  return {
    'deviceName': ?deviceName,
    'existingDisk': ?existingDisk,
    'newDisk': ?newDisk,
  };
}