GesturePathView constructor

const GesturePathView({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required List<GesturePoint> points,
  5. required OnGestureCompleteListener listener,
})

Implementation

const GesturePathView(
    {Key? key,
    required this.width,
    required this.height,
    required this.points,
    required this.listener})
    : super(key: key);