checkout static method

Process a payment checkout (stub implementation for web)

Implementation

static Future<SumupPluginCheckoutResponse> checkout(SumupPaymentRequest payment) async {
  print("We're in Web, nothing to do here!");
  return _createCheckoutResponse(false, {'error': 'Not supported on web'});
}