FunctionImpl constructor

FunctionImpl(
  1. String name,
  2. int numParams, {
  3. bool booleanFunction = false,
  4. required dynamic fEval(
    1. List<Decimal>
    ),
})

Implementation

FunctionImpl(String name, int numParams,
    {bool booleanFunction = false, required this.fEval})
    : super(name, numParams, booleanFunction: booleanFunction);