resetPosition method

void resetPosition()

Returns the window to its default corner.

Implementation

void resetPosition() {
  _storage.remove(_offsetXKey);
  _storage.remove(_offsetYKey);
  if (_offset == null) return;
  _offset = null;
  _notify();
}