check if a string str is base64 encoded
str
bool isBase64(String str) { return base64Reg.hasMatch(str); }