instance property

The default instance of FlutterExprtkPlatform to use, defaults to FlutterExprtkPlatformUnsupported.

Implementation

static FlutterExprtkPlatform get instance => _instance;
void instance=(FlutterExprtkPlatform instance)

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

Implementation

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