NextButton constructor
const
NextButton({
- Key? key,
- required VoidCallback onPressed,
- bool loading = false,
- bool enabled = true,
Implementation
const NextButton({
super.key,
required this.onPressed,
this.loading = false,
this.enabled = true,
});