RenderVerticalDivider constructor

RenderVerticalDivider({
  1. required int dividerWidth,
  2. required int thickness,
  3. required Color color,
  4. required String character,
})

Creates a RenderVerticalDivider with the given dimensions and visual properties.

Implementation

RenderVerticalDivider({
  required this.dividerWidth,
  required this.thickness,
  required Color color,
  required this.character,
}) : _color = color;