canAddToWallet method

Future<AddToWalletResult> canAddToWallet(
  1. String last4
)

check if a particular card can be provisioned with the current app on this particular device.

Implementation

Future<AddToWalletResult> canAddToWallet(String last4) async {
  return await _platform.canAddToWallet(last4);
}