isBase64 method

bool isBase64({
  1. bool urlSafe = false,
})

Checks if the string is Base64 encoded.

Implementation

bool isBase64({bool urlSafe = false}) {
  return _isBase64(this, urlSafe);
}