ByteList.decode constructor

ByteList.decode(
  1. String encodedString, {
  2. Encoder coder = decoder,
})

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));