isQueryStyleProxyBase static method
Returns true when the proxy base is query-parameter style
(e.g. ...proxy?url=) instead of path-prefix style.
Implementation
static bool isQueryStyleProxyBase(String proxyBase) {
return proxyBase.contains('?');
}