SimpleButton constructor

SimpleButton({
  1. Function? onPressed,
  2. Widget? child,
})

Implementation

SimpleButton({
  this.onPressed,
  this.child,
});