currencyType static method

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

Implementation

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