instance property

Implementation

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

Allows platform implementations to register themselves

Implementation

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