instance property
FlutterDeepLinksPlatform
get
instance
The default instance of FlutterDeepLinksPlatform to use.
Defaults to MethodChannelFlutterDeepLinks.
Implementation
static FlutterDeepLinksPlatform get instance => _instance;
set
instance
(FlutterDeepLinksPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends FlutterDeepLinksPlatform when they register themselves.
Implementation
static set instance(FlutterDeepLinksPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}