iban_to_bic

Last updated:

0 purchases

iban_to_bic Image
iban_to_bic Images
Add to Cart

Description:

iban to bic

Determines the SWIFT BIC of an IBAN. Currently supports IBANs from the following countries:
Austria, Belgium, Germany, Lithuania, Luxembourg, Netherlands. Inspired by
sigalor/iban-to-bic.
Getting started #
Depend on it #
Run this command:
flutter pub add iban_to_bic
copied to clipboard
Import it #
Now in your Dart code, you can use:
import 'package:iban_to_bic/iban_to_bic.dart';
copied to clipboard
Example usage #
import 'package:flutter/material.dart';
import 'package:iban_to_bic/iban_to_bic.dart';

Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
final Bic bic = ibanToBic('DE64 5001 0517 9423 8144 35');
print('BIC: ${bic.value}'); // result: INGDDEFFXXX
print('Bank name: ${bic.bankShortName}'); // result: ING-DiBa
print('Postcode: ${bic.bankPostcode}'); // result: 60628
print('Location: ${bic.bankLocation}'); // result: Frankfurt am Main
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.