isQueryStyleProxyBase static method

bool isQueryStyleProxyBase(
  1. String proxyBase
)

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('?');
}