LinearBorder.end constructor
- BorderSide side = BorderSide.none,
- double alignment = 0.0,
- double size = 1.0,
Creates a rectangular box border with an edge on the right for TextDirection.ltr or on the left for TextDirection.rtl.
Implementation
LinearBorder.end({
super.side,
double alignment = 0.0,
double size = 1.0
}) : start = null,
end = LinearBorderEdge(alignment: alignment, size: size),
top = null,
bottom = null;