instance property
FlutterCppBridgePlatform
get
instance
The default instance of FlutterCppBridgePlatform to use.
Defaults to MethodChannelFlutterCppBridge.
Implementation
static FlutterCppBridgePlatform get instance => _instance;
set
instance
(FlutterCppBridgePlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends FlutterCppBridgePlatform when they register themselves.
Implementation
static set instance(FlutterCppBridgePlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}