GoogleCloudDocumentaiV1FetchProcessorTypesResponse.fromJson constructor

GoogleCloudDocumentaiV1FetchProcessorTypesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1FetchProcessorTypesResponse.fromJson(core.Map json_)
    : this(
        processorTypes: json_.containsKey('processorTypes')
            ? (json_['processorTypes'] as core.List)
                .map((value) => GoogleCloudDocumentaiV1ProcessorType.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );