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