LoaderButton constructor
const
LoaderButton({
- Key? key,
- String? title,
- required void onPressed(),
- bool loading = false,
- Icon? icon,
- ButtonStyle? buttonStyle,
Implementation
const LoaderButton({
super.key,
this.title,
required this.onPressed,
this.loading = false,
this.icon,
this.buttonStyle,
});