GuiShapeStar constructor

GuiShapeStar({
  1. required int sides,
  2. required GeoAngle startAngle,
  3. double indentSideFactor = 0.5,
  4. bool clockwise = false,
  5. BoxFit boxFit = BoxFit.none,
  6. double cornerRadius = 0,
})

Implementation

GuiShapeStar(
    {required this.sides,
    required this.startAngle,
    this.indentSideFactor = 0.5,
    this.clockwise = false,
    this.boxFit = BoxFit.none,
    this.cornerRadius = 0}) {
  _shape = GeoStar(sides);
}