prepareForCheckout static method

Future<SumupPluginResponse> prepareForCheckout()

Prepare for checkout (stub implementation for web)

Implementation

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