isApplePaySupported property

ValueListenable<bool> isApplePaySupported

Exposes a ValueListenable whether or not Apple pay is supported for this device.

Always returns false on non Apple platforms.

Implementation

ValueListenable<bool> get isApplePaySupported {
  if (_isApplePaySupported == null) {
    _isApplePaySupported = ValueNotifier(false);
    checkApplePaySupport();
  }
  return _isApplePaySupported!;
}