Decodes a base64 string back to UTF-8 string
static String base64Dec(String input) { final bytes = base64Decode(input); return utf8.decode(bytes); }