ContinueButton constructor

const ContinueButton({
  1. Key? key,
  2. required Widget buttonLabel,
  3. double buttonHeight = 58,
  4. double buttonWidth = 260,
  5. Color color = Colors.green,
})

Implementation

const ContinueButton(
    {super.key,
    required this.buttonLabel,
    this.buttonHeight = 58,
    this.buttonWidth = 260,
    this.color = Colors.green});