isPlatformPaySupportedListenable property
ValueListenable<bool>
get
isPlatformPaySupportedListenable
Exposes a ValueListenable whether or not GooglePay (on Android) or Apple Pay (on iOS) is supported for this device.
Implementation
ValueListenable<bool> get isPlatformPaySupportedListenable {
if (_isPlatformPaySupported == null) {
_isPlatformPaySupported = ValueNotifier(false);
isPlatformPaySupported();
}
return _isPlatformPaySupported!;
}