instance property

VoveIdFlutterPlatform get instance

The default instance of VoveIdFlutterPlatform to use.

Defaults to MethodChannelVoveIdFlutter.

Implementation

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

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

Implementation

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