Line constructor

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

Implementation

const Line({
  Key? key,
  this.color,
  this.height = 0.5,
  this.leftInset = 0,
  this.rightInset = 0,
}) : super(key: key);