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