$GoogleCloudDocumentaiV1DocumentPageImage.fromJson constructor
$GoogleCloudDocumentaiV1DocumentPageImage.fromJson(
- Map json_
Implementation
$GoogleCloudDocumentaiV1DocumentPageImage.fromJson(core.Map json_)
: this(
content: json_.containsKey('content')
? json_['content'] as core.String
: null,
height:
json_.containsKey('height') ? json_['height'] as core.int : null,
mimeType: json_.containsKey('mimeType')
? json_['mimeType'] as core.String
: null,
width: json_.containsKey('width') ? json_['width'] as core.int : null,
);