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