UnderlineText constructor

const UnderlineText({
  1. Key? key,
  2. required Widget child,
  3. bool underline = true,
  4. bool translate = true,
})

Implementation

const UnderlineText({
  super.key,
  required this.child,
  this.underline = true,
  this.translate = true,
});