static Uri parseToUri(String url, {bool format = false}) { if (format) { return Uri.parse(formatUrl(url)); } return Uri.parse(url); }