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