GoogleChromeManagementV1StorageStatusReport.fromJson constructor

GoogleChromeManagementV1StorageStatusReport.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1StorageStatusReport.fromJson(core.Map json_)
    : this(
        disk: json_.containsKey('disk')
            ? (json_['disk'] as core.List)
                .map((value) => GoogleChromeManagementV1DiskInfo.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        reportTime: json_.containsKey('reportTime')
            ? json_['reportTime'] as core.String
            : null,
      );