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