BootstrapButton constructor

const BootstrapButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. VoidCallback? onLongPress,
  4. required Widget child,
  5. ValueChanged<bool>? onHover,
  6. ValueChanged<bool>? onFocusChange,
  7. FocusNode? focusNode,
  8. bool autofocus = false,
  9. BootstrapButtonType type = BootstrapButtonType.defaults,
  10. BootstrapButtonSize size = BootstrapButtonSize.defaults,
  11. bool outline = false,
})

Implementation

const BootstrapButton({
  Key? key,
  this.onPressed,
  this.onLongPress,
  required this.child,
  this.onHover,
  this.onFocusChange,
  this.focusNode,
  this.autofocus = false,
  this.type = BootstrapButtonType.defaults,
  this.size = BootstrapButtonSize.defaults,
  this.outline = false,
}) : super(key: key);