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