formatURL method

dynamic formatURL (String url)

Implementation

formatURL(String url) {
  assert(!url.startsWith("/"));
  return baseURL + url;
}