ExprCallableImpl constructor

ExprCallableImpl({
  1. required Object? fn(
    1. ASTEvaluator evaluator,
    2. List<Object> arguments
    ),
  2. int arity = 0,
})

Implementation

ExprCallableImpl({required this.fn, int arity = 0}) : _arity = arity;