Resolve reference as an URI relative to this.
First turn reference into a URI using Uri.parse. Then resolve the
resulting URI relative to this.
Returns the resolved URI.
See resolveUri for details.
Source
Uri resolve(String reference) {
return resolveUri(Uri.parse(reference));
}