GooglePrivacyDlpV2CloudStorageRegexFileSet.fromJson constructor
GooglePrivacyDlpV2CloudStorageRegexFileSet.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CloudStorageRegexFileSet.fromJson(core.Map json_)
: this(
bucketName: json_.containsKey('bucketName')
? json_['bucketName'] as core.String
: null,
excludeRegex: json_.containsKey('excludeRegex')
? (json_['excludeRegex'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
includeRegex: json_.containsKey('includeRegex')
? (json_['includeRegex'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);