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