PermissionStatus enum
Defines the state of a Permission.
- Inheritance
- Available extensions
Values
- denied → const PermissionStatus
-
The user denied access to the requested feature, permission needs to be asked first.
- granted → const PermissionStatus
-
The user granted access to the requested feature.
- restricted → const PermissionStatus
-
The OS denied access to the requested feature. The user cannot change this app's status, possibly due to active restrictions such as parental controls being in place. Only supported on iOS.
- limited → const PermissionStatus
-
User has authorized this application for limited access. Only supported on iOS (iOS14+).
- permanentlyDenied → const PermissionStatus
-
Permission to the requested feature is permanently denied, the permission dialog will not be shown when requesting this permission. The user may still change the permission status in the settings.
- provisional → const PermissionStatus
-
The application is provisionally authorized to post noninterruptive user notifications.
Only supported on iOS (iOS12+).
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
PermissionStatus> - A constant List of the values in this enum, in order of their declaration.