FunctionList constructor

FunctionList({
  1. required int total,
  2. required List<Func> functions,
})

Implementation

FunctionList({
  required this.total,
  required this.functions,
});