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