isCardInWallet method

Future<IsCardInWalletResult> isCardInWallet(
  1. String cardLastFour
)

check if a particular card can be provisioned with the current app on this particular device. Throws StripeException in case creating the token fails.

Implementation

Future<IsCardInWalletResult> isCardInWallet(String cardLastFour) async {
  return await _platform.isCardInWallet(cardLastFour);
}