isLoggedIn static method

Future<bool?> isLoggedIn()

Check if user is logged in to SumUp (stub implementation for web)

Implementation

static Future<bool?> isLoggedIn() async {
  print("We're in Web, nothing to do here!");
  return false;
}