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