reset method

dynamic reset()

Implementation

reset() {
  position = Offset(_getAxis(maxWidth), _getAxis(maxHeight));
  _buildVelocity();
  size = _random.nextDouble() * _random.nextInt(heightFactor) + 1;
  color = colors[_random.nextInt(colors.length)].withAlpha(100);
}