GoogleCloudDocumentaiV1ProcessResponse.fromJson constructor

GoogleCloudDocumentaiV1ProcessResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1ProcessResponse.fromJson(core.Map json_)
  : this(
      document: json_.containsKey('document')
          ? GoogleCloudDocumentaiV1Document.fromJson(
              json_['document'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      humanReviewStatus: json_.containsKey('humanReviewStatus')
          ? GoogleCloudDocumentaiV1HumanReviewStatus.fromJson(
              json_['humanReviewStatus']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );