Uri? stringToFileUri(String? string) { if (string != null) { return Uri.parse(string); } return null; }