PathShape constructor

PathShape(
  1. Path path, {
  2. required Map<GestureType, Function> gestureMap,
  3. required Paint paint,
  4. HitTestBehavior? hitTestBehavior,
  5. PaintingStyle? paintStyleForTouch,
})

Implementation

PathShape(this.path,
    {required Map<GestureType, Function> gestureMap,
    required Paint paint,
    HitTestBehavior? hitTestBehavior,
    PaintingStyle? paintStyleForTouch})
    : super(
          hitTestBehavior: hitTestBehavior,
          paint: paint,
          gestureCallbackMap: gestureMap);