instance property Null safety
The default instance of FlutterExprtkPlatform to use, defaults to FlutterExprtkPlatformUnsupported.
Implementation
static FlutterExprtkPlatform get instance => _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;
}