instance property

The default instance of SetupadPrebidFlutterPlatform to use.

Defaults to MethodChannelSetupadPrebidFlutter.

Implementation

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

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

Implementation

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