WebUri.uri constructor
WebUri.uri(
- Uri uri
Initialize a WebUri using an Uri instance.
In this case, uriValue.toString()
and rawValue will have the same value.
Implementation
WebUri.uri(Uri uri) {
_uri = uri;
_rawValue = uri.toString();
_isValidUri = true;
}