Arc constructor

const Arc({
  1. Key? key,
  2. required double height,
  3. required Widget child,
  4. Edge edge = Edge.BOTTOM,
  5. ArcType arcType = ArcType.CONVEX,
  6. List<ClipShadow> clipShadows = const [],
})

Implementation

const Arc(
    {Key? key,
      required this.height,
      required this.child,
      this.edge = Edge.BOTTOM,
      this.arcType = ArcType.CONVEX,
      this.clipShadows = const []})
    : super(key: key);