contains method

List<ChartSegment> contains(
  1. Offset position
)

Implementation

List<ChartSegment> contains(Offset position) {
  if (animationController != null && animationController!.isAnimating) {
    return <ChartSegment>[];
  }
  return <ChartSegment>[];
}