loginWithToken static method

Future<SumupPluginResponse> loginWithToken(
  1. String token
)

Login to SumUp with a token (stub implementation for web)

Implementation

static Future<SumupPluginResponse> loginWithToken(String token) async {
  print("We're in Web, nothing to do here!");
  return _createResponse(false, {'error': 'Not supported on web'});
}