CommonTextButton constructor

const CommonTextButton({
  1. Key? key,
  2. required String text,
  3. bool isEnable = true,
  4. VoidCallback? onPressed,
  5. Color? backgroundColor,
  6. Color? textColor,
  7. BorderRadius? radius,
})

Implementation

const CommonTextButton({
  super.key,
  required this.text,
  this.isEnable = true,
  this.onPressed,
  this.backgroundColor,
  this.textColor,
  this.radius,
});