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