VxDiagonal constructor

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

Implementation

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