PluginButton constructor

const PluginButton({
  1. Key? key,
  2. dynamic onPressed()?,
  3. String title = "",
  4. TextStyle? style,
  5. Widget? icon,
  6. bool submitting = false,
  7. Color? backgroundColor,
  8. double? height,
})

Implementation

const PluginButton(
    {Key? key,
    this.onPressed,
    this.title = "",
    this.style,
    this.icon,
    this.submitting = false,
    this.backgroundColor,
    this.height})
    : super(key: key);