canAddToWallet method
- @Deprecated('Use [canAddCardToWallet] instead')
- String last4
check if a particular card can be provisioned with the current app on this particular device.
This method is deprecated. Use canAddCardToWallet instead.
Implementation
@Deprecated('Use [canAddCardToWallet] instead')
Future<AddToWalletResult> canAddToWallet(String last4) async {
return await _platform.canAddToWallet(last4);
}