GoogleCloudDocumentaiV1beta3HumanReviewStatus.fromJson constructor
GoogleCloudDocumentaiV1beta3HumanReviewStatus.fromJson(
- Map _json
Implementation
GoogleCloudDocumentaiV1beta3HumanReviewStatus.fromJson(core.Map _json)
: this(
humanReviewOperation: _json.containsKey('humanReviewOperation')
? _json['humanReviewOperation'] as core.String
: null,
state:
_json.containsKey('state') ? _json['state'] as core.String : null,
stateMessage: _json.containsKey('stateMessage')
? _json['stateMessage'] as core.String
: null,
);