branchCode static method

BbanStructurePart branchCode(
  1. int length,
  2. CharacterType characterType, [
  3. bool trailingSeparator = true
])

Implementation

static BbanStructurePart branchCode(int length, CharacterType characterType,
    [bool trailingSeparator = true]) {
  return BbanStructurePart(
    entryType: PartType.BRANCH_CODE,
    characterType: characterType,
    length: length,
    trailingSeparator: trailingSeparator,
  );
}