CustomPainterFactory typedef

CustomPainterFactory = CustomPainter Function(Map<String, dynamic> data, ChartTheme theme, double animationProgress)

A factory that creates a CustomPainter for use inside CustomPaint.

Implementation

typedef CustomPainterFactory =
    CustomPainter Function(
      Map<String, dynamic> data,
      ChartTheme theme,
      double animationProgress,
    );