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