GooglePrivacyDlpV2InfoTypeStats.fromJson constructor

GooglePrivacyDlpV2InfoTypeStats.fromJson(
  1. Map json_
)

Implementation

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