GooglePrivacyDlpV2RedactImageResponse.fromJson constructor

GooglePrivacyDlpV2RedactImageResponse.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2RedactImageResponse.fromJson(core.Map json_)
    : this(
        extractedText: json_['extractedText'] as core.String?,
        inspectResult: json_.containsKey('inspectResult')
            ? GooglePrivacyDlpV2InspectResult.fromJson(
                json_['inspectResult'] as core.Map<core.String, core.dynamic>)
            : null,
        redactedImage: json_['redactedImage'] as core.String?,
      );