getIsApplePayOnly method
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;
}