checkSession method

Future checkSession()

Checks if current session is valid. Throws OdooSessionExpiredException if session is not valid.

Implementation

Future<dynamic> checkSession() async {
  return callRPC('/web/session/check', 'call', {});
}