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