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