GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty.fromJson constructor
GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty.fromJson(
- Map json_
Implementation
GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty.fromJson(
core.Map json_)
: this(
displayName: json_.containsKey('displayName')
? json_['displayName'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
occurrenceType: json_.containsKey('occurrenceType')
? json_['occurrenceType'] as core.String
: null,
valueType: json_.containsKey('valueType')
? json_['valueType'] as core.String
: null,
);