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