SquareShape constructor

SquareShape({
  1. Color? background = Colors.black,
  2. required Widget child,
  3. double size = 1000,
})

Implementation

SquareShape(
    {this.background = Colors.black, required this.child, this.size = 1000});