init static method

Future<SumupPluginResponse> init(
  1. String affiliateKey
)

Initialize SumUp with affiliate key (stub implementation for web)

Implementation

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