TextButtonWidget constructor

const TextButtonWidget({
  1. Key? key,
  2. String? text,
  3. double? fontSize,
  4. FontWeight? fontWeight,
  5. Color? textColor,
  6. void onTap()?,
  7. EdgeInsetsGeometry? padding,
  8. TextDecoration? decoration = TextDecoration.none,
})

Implementation

const TextButtonWidget({
  Key? key,
  this.text,
  this.fontSize,
  this.fontWeight,
  this.textColor,
  this.onTap,
  this.padding,
  this.decoration = TextDecoration.none,
}) : super(key: key);