decode String to Base64 string
static String base642str(String base64_str) { var bytes = base64.decode(base64_str); return utf8.decode(bytes); }