CommonTextButton constructor

const CommonTextButton({
  1. Key? key,
  2. required String title,
  3. VoidCallback? onTap,
  4. Color textColor = Colors.white,
  5. bool underline = true,
})

Implementation

const CommonTextButton({
  super.key,
  required this.title,
  this.onTap,
  this.textColor = Colors.white,
  this.underline = true,
});