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