SubmitButton constructor

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

Implementation

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