validateLength static method
Validate address length.
Implementation
static void validateLength(String addr, int lenExp) {
if (addr.length != lenExp) {
throw AddressConverterException.addressValidationFailed(
reason: "Invalid address length.",
);
}
}