getSortCode method

String getSortCode(
  1. Country country
)

Ülkeye göre 'Sıralama Kodu' bilgisini geri döndürür.

Implementation

String getSortCode(Country country) {
  switch (country) {
    case Country.turkish:
      {
        return "";
      }

    case Country.england:
      {
        return prepareIban().substring(8, 14);
      }

    case Country.germany:
      {
        return "";
      }

    case Country.france:
      {
        return "";
      }

    case Country.italy:
      {
        return "";
      }

    default:
      {
        return "";
      }
  }
}