instance property

LocaleManagerPlatform get instance

The default instance of LocaleManagerPlatform to use.

Defaults to MethodChannelLocaleManager.

Implementation

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

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

Implementation

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