toJson method

Map<String, dynamic> toJson()

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