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