AppButton constructor
- required String title,
- required String tooltip,
- required VoidCallback onPressed,
- Key? key,
- Color backgroundColor = Colors.white,
- double fontSize = 20,
- FontWeight fontWeight = FontWeight.normal,
Idetntify the required parameters.
Implementation
const AppButton({
required this.title,
required this.tooltip,
required this.onPressed,
super.key,
this.backgroundColor = Colors.white,
this.fontSize = 20,
this.fontWeight = FontWeight.normal,
});