TLine constructor

const TLine({
  1. Key? key,
  2. Color? color,
  3. double height = 0.5,
  4. double leftInset = 0,
  5. double rightInset = 0,
})

Implementation

const TLine({
  super.key,
  this.color,
  this.height = 0.5,
  this.leftInset = 0,
  this.rightInset = 0,
});