toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final capacityBytes = this.capacityBytes;
  final fileSystem = this.fileSystem;
  final freeBytes = this.freeBytes;
  final mountPoint = this.mountPoint;
  final subPartitions = this.subPartitions;
  final type = this.type;
  final uuid = this.uuid;
  return {
    'capacityBytes': ?capacityBytes,
    'fileSystem': ?fileSystem,
    'freeBytes': ?freeBytes,
    'mountPoint': ?mountPoint,
    'subPartitions': ?subPartitions,
    'type': ?type,
    'uuid': ?uuid,
  };
}