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