GuiShapeBorder constructor

const GuiShapeBorder({
  1. required IGuiShape shape,
  2. BorderSide side = BorderSide.none,
})

Constructs an outlined border with shape and border side properties. The shape defines the outline of the border The side controls the width and look for the border.

Implementation

const GuiShapeBorder({
  required this.shape,
  BorderSide side = BorderSide.none,
}) : super(side: side);