Divider constructor

const Divider({
  1. Key? key,
  2. int? height,
  3. int? thickness,
  4. Color? color,
  5. String? character,
})

Creates a Divider with optional height, thickness, and color.

Implementation

const Divider({
  super.key,
  this.height,
  this.thickness,
  this.color,
  this.character,
});