isFullyLoggedIn method

Future<bool> isFullyLoggedIn()

Returns true if the user is fully logged in.

Implementation

Future<bool> isFullyLoggedIn() async {
  final result = await _postMessage('isFullyLoggedIn');
  return result.first ?? false;
}