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