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