GoogleCloudDocumentaiV1EvaluationReference.fromJson constructor

GoogleCloudDocumentaiV1EvaluationReference.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1EvaluationReference.fromJson(core.Map json_)
    : this(
        aggregateMetrics: json_.containsKey('aggregateMetrics')
            ? GoogleCloudDocumentaiV1EvaluationMetrics.fromJson(
                json_['aggregateMetrics']
                    as core.Map<core.String, core.dynamic>)
            : null,
        aggregateMetricsExact: json_.containsKey('aggregateMetricsExact')
            ? GoogleCloudDocumentaiV1EvaluationMetrics.fromJson(
                json_['aggregateMetricsExact']
                    as core.Map<core.String, core.dynamic>)
            : null,
        evaluation: json_['evaluation'] as core.String?,
        operation: json_['operation'] as core.String?,
      );