cielo_bin_query 1.0.2 copy "cielo_bin_query: ^1.0.2" to clipboard
cielo_bin_query: ^1.0.2 copied to clipboard

outdated

A Flutter package that helps to use Cielo's Bin Query.

cielo_bin_query #

A Flutter package that helps to use Cielo's Bin Query.

Usage #

These operations must be performed using its specific key (Client Id, Client Secret and Merchand Id) in the respective environment endpoints.

var binquery = CieloBinQuery(
  clientId: "YOUR-CLIENT-ID",
  clientSecret: "YOUR-CLIENT-SECRET",
  merchantId: "YOUR-MERCHANT-ID",
  environment: Environment.SANDBOX
);

var result = await binquery.query("410715");
print("Status Code: ${result.statusCode}");

if (result.binQueryResponse != null) {
  print("Status: ${result.binQueryResponse.status}");
  print("Provider: ${result.binQueryResponse.provider}");
  print("Card Type: ${result.binQueryResponse.cardType}");
  print("Foreign Card: ${result.binQueryResponse.foreignCard}");
  print("Corporate Card: ${result.binQueryResponse.corporateCard}");
  print("Issuer: ${result.binQueryResponse.issuer}");
  print("Issuer Code: ${result.binQueryResponse.issuerCode}");
}

if (result.errorResponse != null)
  print(result.errorResponse.map((e) {
    print("ErrorCode: ${e.code}");
    print("ErrorMessage: ${e.message}");
  }));
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A Flutter package that helps to use Cielo's Bin Query.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

cielo_oauth, flutter, http

More

Packages that depend on cielo_bin_query