WideButton constructor

const WideButton({
  1. Key? key,
  2. required String label,
  3. Widget? icon,
  4. Color? color,
  5. Color? textColor,
  6. dynamic onPressed()?,
})

Implementation

const WideButton(
    {super.key,
    required this.label,
    this.icon,
    this.color,
    this.textColor,
    this.onPressed});