GooglePrivacyDlpV2InfoTypeLimit.fromJson constructor

GooglePrivacyDlpV2InfoTypeLimit.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2InfoTypeLimit.fromJson(core.Map json_)
    : this(
        infoType: json_.containsKey('infoType')
            ? GooglePrivacyDlpV2InfoType.fromJson(
                json_['infoType'] as core.Map<core.String, core.dynamic>)
            : null,
        maxFindings: json_.containsKey('maxFindings')
            ? json_['maxFindings'] as core.int
            : null,
      );