Border.symmetric constructor
- BorderSide vertical = BorderSide.none,
- BorderSide horizontal = BorderSide.none,
Creates a border with symmetrical vertical and horizontal sides.
The vertical
argument applies to the left and right sides, and the
horizontal
argument applies to the top and bottom sides.
All arguments default to BorderSide.none.
Implementation
const Border.symmetric({
BorderSide vertical = BorderSide.none,
BorderSide horizontal = BorderSide.none,
}) : left = vertical,
top = horizontal,
right = vertical,
bottom = horizontal;