getBranchCode method

String getBranchCode(
  1. Country country
)

Ülkeye göre 'Şube Kodu' bilgisini geri döndürür.

Implementation

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

    case Country.england:
      {
        return "";
      }

    case Country.germany:
      {
        return "";
      }

    case Country.france:
      {
        return prepareIban().substring(9, 14);
      }

    case Country.italy:
      {
        return prepareIban().substring(10, 15);
      }

    default:
      {
        return "";
      }
  }
}