GooglePrivacyDlpV2FileSet.fromJson constructor

GooglePrivacyDlpV2FileSet.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2FileSet.fromJson(core.Map json_)
  : this(
      regexFileSet:
          json_.containsKey('regexFileSet')
              ? GooglePrivacyDlpV2CloudStorageRegexFileSet.fromJson(
                json_['regexFileSet'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      url: json_['url'] as core.String?,
    );