HorizontalBar constructor

const HorizontalBar({
  1. Key? key,
  2. double width = 1,
  3. Color color = Colors.grey,
  4. double mainAxisPadding = 0,
})

Implementation

const HorizontalBar({
  Key? key,
  this.width = 1,
  this.color = Colors.grey,
  this.mainAxisPadding = 0,
}) : super(key: key);