EWBaseButton constructor

const EWBaseButton({
  1. ButtonType buttonType = const Filled(),
  2. bool showTitle = true,
  3. VoidCallback? onPressed,
  4. String? title,
  5. Widget? icon,
  6. ButtonStyle? style,
  7. Key? key,
})

Implementation

const EWBaseButton({
  this.buttonType = const Filled(),
  this.showTitle = true,
  this.onPressed,
  this.title,
  this.icon,
  this.style,
  super.key,
});