isCheckoutInProgress property

Future<bool?> isCheckoutInProgress

Only available for iOS. On Android always returns false.

Login required.

Implementation

static Future<bool?> get isCheckoutInProgress async {
  _throwIfNotInitialized();
  await _throwIfNotLoggedIn();
  final method = await _channel.invokeMethod('isCheckoutInProgress');
  return SumupPluginResponse.fromMap(method).status;
}