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