instance property

MindboxPlatform instance

The instance of MindboxPlatform to use.

Must be set before accessing.

Implementation

// ignore: unnecessary_getters_setters
static MindboxPlatform get instance => _instance;
void instance=(MindboxPlatform instance)

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

Implementation

// ignore: unnecessary_getters_setters
static set instance(MindboxPlatform instance) {
  _instance = instance;
}