instance property

BluetoothLinkPlatform get instance

The default instance of BluetoothLinkPlatform to use.

Defaults to MethodChannelBluetoothLink.

Implementation

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

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

Implementation

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