// GENERATED CODE - DO NOT MODIFY BY HAND part of 'server_disk_volume.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ServerDiskVolume _$ServerDiskVolumeFromJson(Map json) => ServerDiskVolume( freeSpace: json['freeSpace'] as String, model: json['model'] as String?, name: json['name'] as String, root: json['root'] as bool, serial: json['serial'] as String?, totalSpace: json['totalSpace'] as String, type: json['type'] as String, usedSpace: json['usedSpace'] as String, ); Map _$ServerDiskVolumeToJson(ServerDiskVolume instance) => { 'freeSpace': instance.freeSpace, 'model': instance.model, 'name': instance.name, 'root': instance.root, 'serial': instance.serial, 'totalSpace': instance.totalSpace, 'type': instance.type, 'usedSpace': instance.usedSpace, };