isLoggedIn static method

Future<bool> isLoggedIn()

Returns whether the device is associated with an external identifier

Implementation

static Future<bool> isLoggedIn() async {
  final bool isLoggedIn = await channel.invokeMethod("isLoggedIn");
  return isLoggedIn;
}