static String base64Decode(String data) { List<int> bytes = base64.decode(data); String result = utf8.decode(bytes); return result; }