getLocationCode function

String getLocationCode(
  1. String bic
)

Implementation

String getLocationCode(String bic) {
  return bic.substring(
      LOCATION_CODE_INDEX, LOCATION_CODE_INDEX + LOCATION_CODE_LENGTH);
}