MyTextBtn constructor

const MyTextBtn(
  1. String title,
  2. Color color,
  3. Function onTap, {
  4. Key? key,
  5. num fontSize = 14.0,
  6. double? width,
  7. double? height,
  8. bool touchable = true,
})

Implementation

const MyTextBtn(
  this.title,
  this.color,
  this.onTap, {
  Key? key,
  this.fontSize = 14.0,
  this.width,
  this.height,
  this.touchable = true,
}) : super(key: key);