getBranchCode method

String? getBranchCode()

string representation of Bic's branch code, null if Bic has no branch code.

Implementation

String? getBranchCode() {
  if (bic_util.hasBranchCode(_value)) {
    return bic_util.getBranchCode(_value);
  }
  return null;
}