clear method

void clear()

Clears the previously stored token and record auth data.

Implementation

void clear() {
  _token = "";
  _record = null;

  _onChangeController.add(AuthStoreEvent(token, record));
}