ContinueButton constructor

const ContinueButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. bool loading = false,
  4. bool enabled = true,
})

Implementation

const ContinueButton({
  super.key,
  required this.onPressed,
  this.loading = false,
  this.enabled = true,
});