ActionButton constructor
const
ActionButton({
- required VoidCallback? onPressed,
- required String label,
- bool isLoading = false,
- Key? key,
Creates an ActionButton widget.
Implementation
const ActionButton({
required this.onPressed,
required this.label,
this.isLoading = false,
super.key,
});