ChromeOsDeviceScreenshotFiles.fromJson constructor

ChromeOsDeviceScreenshotFiles.fromJson(
  1. Map json_
)

Implementation

ChromeOsDeviceScreenshotFiles.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? core.DateTime.parse(json_['createTime'] as core.String)
            : null,
        downloadUrl: json_['downloadUrl'] as core.String?,
        name: json_['name'] as core.String?,
        type: json_['type'] as core.String?,
      );