NumberCtrlSlot constructor

NumberCtrlSlot({
  1. required Widget child,
  2. required NumberAction onCtrlTap,
  3. bool hoverHighLight = true,
  4. num step = 1,
  5. VoidCallback? onTap,
  6. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 8),
})

Implementation

NumberCtrlSlot({
  required this.child,
  required this.onCtrlTap,
  this.hoverHighLight = true,
  this.step = 1,
  super.onTap,
  super.padding = const EdgeInsets.symmetric(horizontal: 8),
});