isCardAddedToLocalWalletWithCardSuffix static method

Future<bool> isCardAddedToLocalWalletWithCardSuffix(
  1. String cardSuffix
)

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