accountType static method

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

Implementation

static BbanStructurePart accountType(int length, CharacterType characterType,
    [bool trailingSeparator = false]) {
  return BbanStructurePart(
    entryType: PartType.ACCOUNT_TYPE,
    characterType: characterType,
    length: length,
    trailingSeparator: trailingSeparator,
  );
}