getExample function

String? getExample(
  1. String country
)

Return an example iban for country.

Implementation

String? getExample(String country) {
  return specifications[country]?.example;
}