isCardAddedToRemoteWalletWithPrimaryAccountIdentifier static method

Future<bool> isCardAddedToRemoteWalletWithPrimaryAccountIdentifier(
  1. String primaryAccountIdentifier
)

Implementation

static Future<bool> isCardAddedToRemoteWalletWithPrimaryAccountIdentifier(String primaryAccountIdentifier) async {
  bool? cardAddedRemotelyWithAccountId = await _methodChannel
      .invokeMethod<bool>('isCardAddedToRemoteWalletWithPrimaryAccountIdentifier', [primaryAccountIdentifier]);
  if (cardAddedRemotelyWithAccountId != null && cardAddedRemotelyWithAccountId == true){
    return true;
  }
  return false;
}