CommonTextButton constructor
const
CommonTextButton({
- Key? key,
- required String title,
- VoidCallback? onTap,
- Color textColor = Colors.white,
- bool underline = true,
Implementation
const CommonTextButton({
super.key,
required this.title,
this.onTap,
this.textColor = Colors.white,
this.underline = true,
});