IdentRecord constructor

IdentRecord({
  1. required String name,
  2. required IdentKind kind,
  3. dynamic value,
  4. int pCount = 0,
  5. Func0? func0,
  6. Func1? func1,
  7. Func2? func2,
  8. Func3? func3,
  9. Func4? func4,
  10. FuncA? funcA,
})

Implementation

IdentRecord({
  required this.name,
  required this.kind,
  this.value,
  this.pCount = 0,
  this.func0,
  this.func1,
  this.func2,
  this.func3,
  this.func4,
  this.funcA,
});