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