ChromeOsDeviceDiskVolumeReportsVolumeInfo.fromJson constructor

ChromeOsDeviceDiskVolumeReportsVolumeInfo.fromJson(
  1. Map json_
)

Implementation

ChromeOsDeviceDiskVolumeReportsVolumeInfo.fromJson(core.Map json_)
    : this(
        storageFree: json_.containsKey('storageFree')
            ? json_['storageFree'] as core.String
            : null,
        storageTotal: json_.containsKey('storageTotal')
            ? json_['storageTotal'] as core.String
            : null,
        volumeId: json_.containsKey('volumeId')
            ? json_['volumeId'] as core.String
            : null,
      );