Commit 2208f69a by Maurits van Beusekom Committed by GitHub

Merge pull request #89 from mleonhard/patch-1

Clarify PermissionStatus.restricted description.
parents bf128819 a695acf2
......@@ -13,7 +13,9 @@ class PermissionStatus {
/// Permission to access the requested feature is granted by the user.
static const PermissionStatus granted = PermissionStatus._(2);
/// The user granted restricted access to the requested feature (only on iOS).
/// Permission to access the requested feature is denied by the OS (only on iOS).
/// The user cannot change this app's status, possibly due to active restrictions such as
/// parental controls being in place.
static const PermissionStatus restricted = PermissionStatus._(3);
/// Permission is in an unknown state
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment