toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final diskNumber = this.diskNumber;
final sizeGb = this.sizeGb;
final volumeId = this.volumeId;
return {
'diskNumber': ?diskNumber,
'sizeGb': ?sizeGb,
'volumeId': ?volumeId,
};
}