instance property

The default instance of QuickActionsPlatform to use.

Defaults to MethodChannelQuickActions.

Implementation

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

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

Implementation

// TODO(amirh): Extract common platform interface logic.
// https://github.com/flutter/flutter/issues/43368
static set instance(QuickActionsPlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}