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