bankCode static method

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

Implementation

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