openSettings static method

Future<SumupPluginResponse> openSettings()

Opens SumUp dialog to connect to a card terminal.

Login required.

Implementation

static Future<SumupPluginResponse> openSettings() async {
  _throwIfNotInitialized();
  await _throwIfNotLoggedIn();
  final method = await _channel.invokeMethod('openSettings');
  return SumupPluginResponse.fromMap(method);
}