instance property

XldataanalysisPlatform get instance

The default instance of XldataanalysisPlatform to use.

Defaults to MethodChannelXldataanalysis.

Implementation

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

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

Implementation

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