instance property

The default instance of FlutterXsltPlatformInterface to use.

Defaults to PlatformVersionMethodChannel.

Implementation

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

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

Implementation

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