isLoggedIn property

Future<bool?> isLoggedIn

Returns whether merchant is already logged in.

Implementation

static Future<bool?> get isLoggedIn async {
  _throwIfNotInitialized();
  final method = await _channel.invokeMethod('isLoggedIn');
  return SumupPluginResponse.fromMap(method).status;
}