ArcRenderData constructor

ArcRenderData({
  1. required String id,
  2. required Offset start2D,
  3. required Offset end2D,
  4. required Offset control2D,
  5. required Offset midPoint2D,
  6. required List<Offset> arcPoints2D,
  7. required List<bool> arcPointsVisible,
  8. required bool isStartVisible,
  9. required bool isEndVisible,
  10. required bool isMidVisible,
  11. required AnimatedPointConnection connection,
  12. double transitionProgress = 1.0,
  13. double growthProgress = 1.0,
  14. double dashOffset = 0.0,
})

Implementation

ArcRenderData({
  required this.id,
  required this.start2D,
  required this.end2D,
  required this.control2D,
  required this.midPoint2D,
  required this.arcPoints2D,
  required this.arcPointsVisible,
  required this.isStartVisible,
  required this.isEndVisible,
  required this.isMidVisible,
  required this.connection,
  this.transitionProgress = 1.0,
  this.growthProgress = 1.0,
  this.dashOffset = 0.0,
});