LittleActionButton constructor
- {Key? key,
- required VoidCallback onTap,
- required Widget child,
- Color? buttonColor,
- bool loadingButton = true,
- Color? borderColor}
Implementation
const LittleActionButton({
Key? key,
required this.onTap,
required this.child,
this.buttonColor,
this.loadingButton = true,
this.borderColor,
}) : super(key: key);