getIsApplePayOnly method

  1. @override
Future<bool> getIsApplePayOnly()
override

Whether the SDK is currently treating this merchant as Apple-Pay-only. Mirrors ZeroSettle.shared.isApplePayOnly on iOS.

Implementation

@override
Future<bool> getIsApplePayOnly() async {
  final result = await methodChannel.invokeMethod<bool>('getIsApplePayOnly');
  return result ?? false;
}