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