Implementation
CalculatorEnterButton(
ButtonFactory factory,
String uText,
String fText,
String gText,
Operation uKey,
Operation fKey,
Operation gKey,
String rawKeyboardKey,
{required this.extraHeight,
String? acceleratorLabel,
Key? key})
: _outerBorder = _calculateOuterBorder(factory, extraHeight),
_innerBorder = _calculateInnerBorder(factory, extraHeight),
_lowerSurface = _calculateLowerSurface(factory, extraHeight),
_upperSurface = _calculateUpperSurface(factory, extraHeight),
_gTextOffset = factory.gTextOffset.translate(0, extraHeight),
super(factory, uText, fText, gText, uKey, fKey, gKey, rawKeyboardKey,
acceleratorLabel: acceleratorLabel, key: key);