deviceSupportsAppleWallet static method
Implementation
static Future<bool> deviceSupportsAppleWallet() async {
bool? deviceSupported = await _methodChannel.invokeMethod<bool>('deviceSupportsAppleWallet');
if (deviceSupported != null && deviceSupported == true){
return true;
}
return false;
}