Underline constructor

const Underline({
  1. Key? key,
  2. Color? color,
  3. bool active = true,
  4. double height = 1,
})

Implementation

const Underline({
  super.key,
  this.color,
  this.active = true,
  this.height = 1,
});