VerticalDivider constructor

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

Creates a VerticalDivider with optional width, thickness, and color.

Implementation

const VerticalDivider({
  super.key,
  this.width,
  this.thickness,
  this.color,
  this.character,
});