GooglePrivacyDlpV2RecordSuppression.fromJson constructor

GooglePrivacyDlpV2RecordSuppression.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2RecordSuppression.fromJson(core.Map json_)
    : this(
        condition: json_.containsKey('condition')
            ? GooglePrivacyDlpV2RecordCondition.fromJson(
                json_['condition'] as core.Map<core.String, core.dynamic>)
            : null,
      );