ByteList.decodeWithConstraintRange constructor
ByteList.decodeWithConstraintRange(})
Decoding encoded string to a ByteList with the expected min and max lengths of the encoded bytes.
Implementation
ByteList.decodeWithConstraintRange(String encodedString,
{Encoder coder = decoder, int min = _minLength, int max = _maxLength})
: this.withConstraintRange(coder.decode(encodedString),
min: min, max: max);