ByteList.decode constructor
Decoding encoded String to a ByteList. There is no size constraints for the decoded bytes. TODO: create unit tests for decoding constructors.
Implementation
ByteList.decode(String encodedString, {Encoder coder = decoder})
: this(coder.decode(encodedString));