toJson method
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,
};
}