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