Converts the string to a Uri, adding "https://" if missing.
Uri get uri { String v = this; if (!v.contains("://")) v = "https://$v"; return Uri.parse(v); }