Commit 29d75861 by Maurits van Beusekom

Move analysis configuration to root of project

parent e2b5252e
include: package:effective_dart/analysis_options.1.2.0.yaml
linter:
rules:
- public_member_api_docs
\ No newline at end of file
...@@ -21,8 +21,9 @@ abstract class PermissionHandlerPlatform extends PlatformInterface { ...@@ -21,8 +21,9 @@ abstract class PermissionHandlerPlatform extends PlatformInterface {
/// Defaults to [MethodChannelPermissionHandler]. /// Defaults to [MethodChannelPermissionHandler].
static PermissionHandlerPlatform get instance => _instance; static PermissionHandlerPlatform get instance => _instance;
/// Platform-specific plugins should set this with their own platform-specific /// Platform-specific plugins should set this with their own
/// class that extends [PermissionHandlerPlatform] when they register themselves. /// platform-specific class that extends
/// [PermissionHandlerPlatform] when they register themselves.
static set instance(PermissionHandlerPlatform instance) { static set instance(PermissionHandlerPlatform instance) {
PlatformInterface.verifyToken(instance, _token); PlatformInterface.verifyToken(instance, _token);
_instance = instance; _instance = instance;
......
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