isSessionActive property
Returns whether the user is currently logged in or not.
Convenience method for checking if the currentSession is not null.
Implementation
Future<bool> get isSessionActive async => await currentSession != null;
Returns whether the user is currently logged in or not.
Convenience method for checking if the currentSession is not null.
Future<bool> get isSessionActive async => await currentSession != null;