toRequest method
Return a request whose parameters are taken from this object and that has
the given id.
Implementation
@override
Request toRequest(String id, {ClientUriConverter? clientUriConverter}) {
  return Request(
    id,
    'analysis.updateContent',
    toJson(clientUriConverter: clientUriConverter),
  );
}