Getting started

It allows formatting the IBAN of each country.

Usage

final formatter = IbanTextInputFormatter(
    countryCode: CountryCode.TR,
    added: Added.two,
  );

final formatter = IbanTextInputFormatter(
    countryCode: CountryCode.UA,
    added: Added.zero,
    grupSize: 2,
  );

Added

With Added you can choose how many digits to start with. For example

Added.two = 42 ....

Added.four = 4242 ....

Grup Size

With group size you can specify how many groups the grouping will be. For example

grupSize = 2 => ... 42 42 ...

grupSize = 4 => ... 4242 4242 ...

Libraries

iban_formatter