RegexValidation.fromJson constructor

RegexValidation.fromJson(
  1. Map json_
)

Implementation

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