ActionButton constructor

const ActionButton({
  1. required VoidCallback? onPressed,
  2. required String label,
  3. bool isLoading = false,
  4. Key? key,
})

Creates an ActionButton widget.

Implementation

const ActionButton({
  required this.onPressed,
  required this.label,
  this.isLoading = false,
  super.key,
});