PathView constructor

const PathView({
  1. Key? key,
  2. required Path path,
  3. required Paint paint,
  4. Widget? child,
})

Implementation

const PathView(
    {Key? key,
    required this.path,
    required this.paint,
    //required this.size,
    this.child})
    : super(key: key);