RhombusShape constructor

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

Implementation

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