showCard method

Future<Response?> showCard(
  1. String token
)

Show credit/debit card metadata by token card identifier

@param token @return @throws InvalidCredentialsException

Implementation

Future<Response?> showCard(String token) {
  return send('tokenizationShowCard',
      {'token': token, 'settings': getSettings(RequestBehaviour(), settings)});
}