GooglePrivacyDlpV2InspectContentResponse.fromJson constructor

GooglePrivacyDlpV2InspectContentResponse.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2InspectContentResponse.fromJson(core.Map json_)
    : this(
        result: json_.containsKey('result')
            ? GooglePrivacyDlpV2InspectResult.fromJson(
                json_['result'] as core.Map<core.String, core.dynamic>)
            : null,
      );