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