uri property

Uri? uri

Implementation

Uri? get uri {
  if (prefix == null || content == null) {
    return null;
  }
  return Uri.parse(iriString!);
}
void uri=(Uri? uri)

Implementation

set uri(Uri? uri) {
  iriString = uri.toString();
}