instance property

QsWidgetPlatform get instance

The default instance of QsWidgetPlatform to use.

Defaults to MethodChannelQsWidget.

Implementation

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

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

Implementation

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