NormalOperationOrLetter.floatOnly constructor Null safety
- {void pressed( )?,
- StackLift? stackLift,
- required void floatCalc( ),
- void complexCalc( )?,
- required String name,
- required LetterLabel letter}
Implementation
NormalOperationOrLetter.floatOnly(
{void Function(ActiveState)? pressed,
StackLift? stackLift,
required void Function(Model) floatCalc,
void Function(Model)? complexCalc,
required String name,
required LetterLabel letter})
: numericValue = letter.numericValue,
programListingArgName = letter.name,
super.floatOnly(
pressed: pressed,
stackLift: stackLift,
floatCalc: floatCalc,
complexCalc: complexCalc,
name: name);