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