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