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