BootstrapButton constructor

const BootstrapButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. VoidCallback? onLongPress,
  4. required Widget child,
  5. BootstrapButtonType type = BootstrapButtonType.defaults,
  6. BootstrapButtonSize size = BootstrapButtonSize.defaults,
  7. bool outline = false,
})

Implementation

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