isBase64 function

bool isBase64(
  1. String str
)

Implementation

bool isBase64(String str) {
  return base64RegExp.hasMatch(str);
}