LinearBorder.end constructor

LinearBorder.end(
  1. {BorderSide side = BorderSide.none,
  2. double alignment = 0.0,
  3. 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;