isValidAuthHeaderValue function
Returns true if the provided value is a valid HTTP "authorization" header value (which includes starting with an authentication scheme name).
Implementation
bool isValidAuthHeaderValue(String value) => _authValueRegExp.hasMatch(value);