static post(url, body = {}, headers = {}) {
    if (!url) throw new Error('Base.post: a URL is required.')
    return request(url, 'POST', body, headers)
  }