NormalOperation constructor Null safety
Implementation
NormalOperation(
{void Function(ActiveState)? pressed,
StackLift? stackLift,
required void Function(Model m)? calc,
required String name,
this.endsDigitEntry = true,
this.maxOneByteOpcodes = 9999})
: _pressed = pressed,
_stackLift = stackLift ?? StackLift.enable,
floatCalc = calc,
intCalc = calc,
complexCalc = calc,
super(name: name);