isAuthenticated static method

Future<bool> isAuthenticated()

Implementation

static Future<bool> isAuthenticated() async {
  try {
    bool success = await _channel.invokeMethod('isAuthenticated');
    return success;
  } on PlatformException catch (error) {
    return Future.error(error);
  }
}