WxLinearBorder.bottom constructor

WxLinearBorder.bottom({
  1. WxBorderSide? side,
  2. double alignment = 0.0,
  3. double size = 1.0,
})

Creates a rectangular box border with an edge on the bottom.

Implementation

WxLinearBorder.bottom({super.side, double alignment = 0.0, double size = 1.0})
    : start = null,
      end = null,
      top = null,
      bottom = WxLinearBorderSide(alignment: alignment, size: size);