Commit 47965467 by Jan-Derk

added "REQUEST_INSTALL_PACKAGES" permission

parent 60dfb8dc
...@@ -137,7 +137,6 @@ class Permission { ...@@ -137,7 +137,6 @@ class Permission {
///iOS: Nothing ///iOS: Nothing
static const requestInstallPackages = Permission._(24); static const requestInstallPackages = Permission._(24);
/// Returns a list of all possible [PermissionGroup] values. /// Returns a list of all possible [PermissionGroup] values.
static const List<Permission> values = <Permission>[ static const List<Permission> values = <Permission>[
calendar, calendar,
......
...@@ -6,7 +6,7 @@ void main() { ...@@ -6,7 +6,7 @@ void main() {
() { () {
final values = Permission.values; final values = Permission.values;
expect(values.length, 24); expect(values.length, 25);
}); });
test('check if byValue returns corresponding PermissionGroup value', () { test('check if byValue returns corresponding PermissionGroup value', () {
......
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