isCardAddedToRemoteWalletWithCardSuffix static method

Future<bool> isCardAddedToRemoteWalletWithCardSuffix(
  1. String cardSuffix
)

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;
}