VxArc constructor

const VxArc({
  1. Key? key,
  2. required double height,
  3. required Widget child,
  4. VxEdge edge = VxEdge.bottom,
  5. VxArcType arcType = VxArcType.convex,
  6. List<VxClipShadow> clipShadows = const [],
})

Implementation

const VxArc(
    {super.key,
    required this.height,
    required this.child,
    this.edge = VxEdge.bottom,
    this.arcType = VxArcType.convex,
    this.clipShadows = const []});