showCards method

Future<Response?> showCards(
  1. List<String> tokens
)

Show credit/debit cards metadata by tokens card identifier

@param tokens @return @throws InvalidCredentialsException

Implementation

Future<Response?> showCards(List<String> tokens) {
  return send('tokenizationShowCards',
      {'token': tokens, 'settings': getSettings(RequestBehaviour(), settings)});
}