Commit 376317fc by Jan-Derk

Updated because of review comments

parent dbb651c2
library permission_handler_platform_interface; library permission_handler_platform_interface;
import 'dart:async'; import 'dart:async';
import 'package:flutter/cupertino.dart'; import 'package:meta/meta.dart';
import 'package:plugin_platform_interface/plugin_platform_interface.dart'; import 'package:plugin_platform_interface/plugin_platform_interface.dart';
import 'src/method_channel/method_channel_permission_handler.dart'; import 'src/method_channel/method_channel_permission_handler.dart';
......
...@@ -2,10 +2,10 @@ part of permission_handler_platform_interface; ...@@ -2,10 +2,10 @@ part of permission_handler_platform_interface;
/// Defines the state of a [Permission]. /// Defines the state of a [Permission].
enum PermissionStatus { enum PermissionStatus {
/// The user granted access to the requested feature. /// The user denied access to the requested feature.
denied, denied,
/// The user denied access to the requested feature. /// The user granted access to the requested feature.
granted, granted,
/// The OS denied access to the requested feature. The user cannot change /// The OS denied access to the requested feature. The user cannot change
......
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