rawAsBytes property

List<int> rawAsBytes

Implementation

core.List<core.int> get rawAsBytes => convert.base64.decode(raw!);
void rawAsBytes=(List<int> bytes_)

Implementation

set rawAsBytes(core.List<core.int> bytes_) {
  raw =
      convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}