resolve method
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.
Implementation
@override
Uri resolve(String reference) {
return _uri.resolve(reference);
}