VxDiagonal constructor

const VxDiagonal({
  1. Key? key,
  2. required Widget child,
  3. required double clipHeight,
  4. VxDiagonalPosition position = VxDiagonalPosition.BOTTOM_LEFT,
  5. Axis axis = Axis.horizontal,
  6. List<VxClipShadow> clipShadows = const [],
})

Implementation

const VxDiagonal(
    {Key? key,
    required this.child,
    required this.clipHeight,
    this.position = VxDiagonalPosition.BOTTOM_LEFT,
    this.axis = Axis.horizontal,
    this.clipShadows = const []})
    : super(key: key);