PathFilter.fromJson constructor

PathFilter.fromJson(
  1. Map _json
)

Implementation

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