CommonTextButton constructor
const
CommonTextButton({
- Key? key,
- required String text,
- bool isEnable = true,
- VoidCallback? onPressed,
- Color? backgroundColor,
- Color? textColor,
- BorderRadius? radius,
Implementation
const CommonTextButton({
super.key,
required this.text,
this.isEnable = true,
this.onPressed,
this.backgroundColor,
this.textColor,
this.radius,
});