UnderlineTextWidget constructor

const UnderlineTextWidget({
  1. Key? key,
  2. required String text,
  3. Color? textColor,
  4. double fontSize = 16.0,
  5. FontWeight? fontWeight,
  6. String? fontFamily,
})

Implementation

const UnderlineTextWidget({
  super.key,
  required this.text,
  this.textColor,
  this.fontSize = 16.0,
  this.fontWeight,
  this.fontFamily,
});