CustomButton constructor
const
CustomButton({
- Key? key,
- required String text,
- required VoidCallback onPressed,
Implementation
const CustomButton({
super.key,
required this.text,
required this.onPressed,
});