GoogleChromeManagementV1StorageStatusReport.fromJson constructor

GoogleChromeManagementV1StorageStatusReport.fromJson(
  1. Map json_
)

Implementation

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