Get base64 string
Future<String> getBase64() async { final bytes = await getBytes(); return base64Encode(bytes); }