instance property

NativeBasePlatform get instance

Implementation

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

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

Implementation

static set instance(NativeBasePlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}