You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ print(newDocumentFile);
65
65
/// You have [write] and [read] access to all persisted [URI]s
66
66
final listOfPersistedUris = await persistedUriPermissions();
67
67
68
-
print(newDocumentFile);
68
+
print(listOfPersistedUris);
69
69
```
70
70
71
71
- Revoke a current persisted [URI], from `SAF` API
@@ -76,8 +76,6 @@ final uri = ...;
76
76
77
77
/// After calling this, you no longer has access to the [uri]
78
78
await releasePersistableUriPermission(uri);
79
-
80
-
print(newDocumentFile);
81
79
```
82
80
83
81
- Convenient method to know if a given [uri] is a persisted `uri` ("persisted uri" means that you have `write` and `read` access to the `uri` even if devices reboot)
@@ -89,8 +87,6 @@ final uri = ...;
89
87
90
88
/// Verify if you have [write] and [read] access to a given [uri]
0 commit comments