isSupported method
Check if the device supports NFC wallet suppression.
Returns true if the device has the necessary hardware and OS support
for wallet suppression, false otherwise.
This is useful to check before attempting to request suppression, allowing you to provide appropriate UI or fallback behavior.
Implementation
@override
Future<bool> isSupported() async {
methodCalls.add('isSupported');
return _isSupported;
}