isCardAddedToLocalWalletWithCardSuffix static method
Implementation
static Future<bool> isCardAddedToLocalWalletWithCardSuffix(String cardSuffix) async {
bool? cardAddedLocally = await _methodChannel
.invokeMethod<bool>('isCardAddedToLocalWalletWithCardSuffix', [cardSuffix]);
if (cardAddedLocally != null && cardAddedLocally == true){
return true;
}
return false;
}