instance property
Talker
get
instance
Lazily-built singleton. Safe to call from anywhere — first call builds + hooks, subsequent calls return the same instance.
Implementation
static Talker get instance {
if (_instance != null) return _instance!;
ensureInitialized();
return _instance!;
}