clear method

void clear()

Clears the previously stored token and model auth data.

Implementation

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

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