toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final disks = this.disks;
  final totalCapacityBytes = this.totalCapacityBytes;
  final totalFreeBytes = this.totalFreeBytes;
  return {
    'disks': ?disks,
    'totalCapacityBytes': ?totalCapacityBytes,
    'totalFreeBytes': ?totalFreeBytes,
  };
}