GooglePrivacyDlpV2Regex.fromJson constructor
GooglePrivacyDlpV2Regex.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2Regex.fromJson(core.Map json_)
: this(
groupIndexes: json_.containsKey('groupIndexes')
? (json_['groupIndexes'] as core.List)
.map((value) => value as core.int)
.toList()
: null,
pattern: json_.containsKey('pattern')
? json_['pattern'] as core.String
: null,
);