SquareShape constructor

SquareShape({
  1. Color background = Colors.black,
  2. required Widget child,
  3. double size = 50,
  4. bool with3DEffect = false,
})

Implementation

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