toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (disks != null) 'disks': disks!,
      if (totalCapacityBytes != null)
        'totalCapacityBytes': totalCapacityBytes!,
      if (totalFreeBytes != null) 'totalFreeBytes': totalFreeBytes!,
    };