getCountryCode function

String getCountryCode(
  1. String bic
)

Implementation

String getCountryCode(String bic) {
  return bic.substring(
      COUNTRY_CODE_INDEX, COUNTRY_CODE_INDEX + COUNTRY_CODE_LENGTH);
}