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(
    {Key? key,
    required this.height,
    required this.child,
    this.edge = VxEdge.BOTTOM,
    this.arcType = VxArcType.CONVEX,
    this.clipShadows = const []})
    : super(key: key);