instance property

The default instance of NavLayoutsComponentPlatform to use.

Defaults to MethodChannelNavLayoutsComponent.

Implementation

static NavLayoutsComponentPlatform get instance => _instance;
set instance (NavLayoutsComponentPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends NavLayoutsComponentPlatform when they register themselves.

Implementation

static set instance(NavLayoutsComponentPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}