PlainButton constructor

PlainButton({
  1. Key? key,
  2. dynamic onPressed()?,
  3. Widget? child,
  4. EdgeInsets? padding,
})

Implementation

PlainButton({
  Key? key,
  this.onPressed,
  this.child,
  this.padding
});