PluginIconButton constructor

const PluginIconButton({
  1. Key? key,
  2. Color? color = const Color(0x24FFFFFF),
  3. Widget? icon,
  4. dynamic onPressed()?,
})

Implementation

const PluginIconButton(
    {Key? key,
    this.color = const Color(0x24FFFFFF),
    this.icon,
    this.onPressed})
    : super(key: key);