uriString property

String? get uriString

Gets the full URI string.

Implementation

String? get uriString {
  if (prefix == null || content == null) {
    return null;
  }
  return Uri.parse(prefix! + content!).toString();
}
set uriString (String? uriString)

Sets the URI string.

Implementation

set uriString(String? uriString) {
  iriString = uriString;
}