UNumericKeyboardAction constructor

const UNumericKeyboardAction({
  1. required VoidCallback onTap,
  2. VoidCallback? onLongPress,
  3. String? label,
  4. IconData? icon,
  5. Widget? child,
  6. int flex = 1,
  7. Color? backgroundColor,
  8. Color? foregroundColor,
  9. double? borderRadius,
  10. double? fontSize,
  11. FontWeight? fontWeight,
  12. bool enabled = true,
})

Implementation

const UNumericKeyboardAction({
  required this.onTap,
  this.onLongPress,
  this.label,
  this.icon,
  this.child,
  this.flex = 1,
  this.backgroundColor,
  this.foregroundColor,
  this.borderRadius,
  this.fontSize,
  this.fontWeight,
  this.enabled = true,
});