LineDivider constructor

const LineDivider({
  1. Key? key,
  2. required Color color,
  3. double height = 1.0,
})

Implementation

const LineDivider({
  super.key,
  required this.color,
  this.height = 1.0,
});