rawContentAsBytes property

List<int> get rawContentAsBytes

Implementation

core.List<core.int> get rawContentAsBytes =>
    convert.base64.decode(rawContent!);
set rawContentAsBytes (List<int> bytes_)

Implementation

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