EWBaseButton constructor

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

Implementation

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