SquareShape constructor

SquareShape({
  1. bool hollow = false,
  2. double strokeWidth = 1,
})

Creates a square shape.

Implementation

SquareShape({
  bool hollow = false,
  double strokeWidth = 1,
}) : super(hollow, strokeWidth);