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