clearSession method

Future<void> clearSession()

세션 삭제

Implementation

Future<void> clearSession() async {
  _currentUser = null;
  _serverToken = null;
  _expiresAt = null;
}