JsonPathParser constructor

JsonPathParser({
  1. Iterable<Fun> functions = const [],
})

Creates an instance of the parser.

Implementation

factory JsonPathParser({Iterable<Fun> functions = const []}) =>
    functions.isEmpty ? _standard : JsonPathParser._(functions);