GuiShapeBorder constructor
const
GuiShapeBorder({
- required IGuiShape shape,
- 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);