GooglePrivacyDlpV2DetectionRule.fromJson constructor

GooglePrivacyDlpV2DetectionRule.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2DetectionRule.fromJson(core.Map json_)
    : this(
        hotwordRule: json_.containsKey('hotwordRule')
            ? GooglePrivacyDlpV2HotwordRule.fromJson(
                json_['hotwordRule'] as core.Map<core.String, core.dynamic>)
            : null,
      );