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