instance property

The default instance of SeasonalAppIconPlatform to use.

Defaults to MethodChannelSeasonalAppIcon.

Implementation

static SeasonalAppIconPlatform get instance => _instance;
set instance (SeasonalAppIconPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends SeasonalAppIconPlatform when they register themselves.

Implementation

static set instance(SeasonalAppIconPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}