LeftBorder constructor
const
LeftBorder({
- required Widget child,
- Style style = const Style(),
- String char = '│',
- EdgeInsets padding = const EdgeInsets.only(left: 1),
- int? borderHeight,
Creates a left border widget.
Implementation
const LeftBorder({
required this.child,
this.style = const Style(),
this.char = '│',
this.padding = const EdgeInsets.only(left: 1),
this.borderHeight,
});