Divider constructor

const Divider({
  1. DividerOrientation orientation = DividerOrientation.horizontal,
  2. String char = '─',
  3. Style? style,
})

Implementation

const Divider({
  this.orientation = DividerOrientation.horizontal,
  this.char = '─',
  this.style,
});