logout static method

Performs logout.

Implementation

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