GoogleChromeManagementV1StorageInfoDiskVolume.fromJson constructor

GoogleChromeManagementV1StorageInfoDiskVolume.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1StorageInfoDiskVolume.fromJson(core.Map json_)
    : this(
        storageFreeBytes: json_.containsKey('storageFreeBytes')
            ? json_['storageFreeBytes'] as core.String
            : null,
        storageTotalBytes: json_.containsKey('storageTotalBytes')
            ? json_['storageTotalBytes'] as core.String
            : null,
        volumeId: json_.containsKey('volumeId')
            ? json_['volumeId'] as core.String
            : null,
      );