deviceSupportsAppleWallet static method

Future<bool> deviceSupportsAppleWallet()

Implementation

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