begin method

void begin(
  1. Offset point, {
  2. double? velocity = 0.0,
})

Implementation

void begin(Offset point, {double? velocity: 0.0}) {
  _points.add(OffsetPoint.from(point));
  _currentVelocity = velocity;

  _temp = _dot(point);
}