EasyButton constructor

const EasyButton({
  1. Key? key,
  2. String? text,
  3. VoidCallback? onClick,
  4. EasyButtonType? type,
  5. bool? ghost,
  6. bool? disabled,
  7. bool? block,
  8. IconData? icon,
  9. EasyButtonShape? shape,
  10. String? semanticLabel,
  11. EasyButtonSize? size,
})

Implementation

const EasyButton({
  Key? key,
  this.text,
  this.onClick,
  this.type,
  this.ghost,
  this.disabled,
  this.block,
  this.icon,
  this.shape,
  this.semanticLabel,
  this.size,
}) : super(key: key);