PathTracker constructor

PathTracker(
  1. RPActivityEventLogger gestureController,
  2. List<Location> locations
)

Implementation

PathTracker(this.gestureController, this.locations) {
  _paths = [];
  _isDraging = false;
  taskStarted = false;
  prevLocation = locations.first;
  nextLocation = locations[1];
  index = 1;
}