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