url method
Implementation
Uri url(StatusRel rel,
{MediaType? preferredType, Map<String, String> parameters = const {}}) {
Link? l = link(rel, type: preferredType) ?? linkWithNoType(rel);
if (l == null) {
throw LcpException.parsing.url(rel.value);
}
return l.urlWithParams(parameters: parameters);
}