instance property

RarPlatform get instance

The default instance of RarPlatform to use.

Defaults to RarMethodChannel for iOS/macOS and RarFfi for Android.

Implementation

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

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

Implementation

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