iban 0.2.0 copy "iban: ^0.2.0" to clipboard
iban: ^0.2.0 copied to clipboard

outdated

A validation library for IBANs included in the official registry. Also supports some unofficial ones.

example/iban_example.dart

import 'package:iban/iban.dart';

/// A simple iban example.
int main() {
  var iban = 'AT611904300234573201';
  if (isValid(iban)) {
    print('$iban is a valid iban');
  } else {
    print('$iban is not a valid iban');
  }

  return 0;
}
29
likes
0
pub points
95%
popularity

Publisher

unverified uploader

A validation library for IBANs included in the official registry. Also supports some unofficial ones.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

mod97

More

Packages that depend on iban