getCurrentActivatedPlugin static method
Get the currently activated plugin.
Returns null if no plugin is currently activated.
Implementation
static Pluggable? getCurrentActivatedPlugin() {
final _ContentPageState? state =
_umeWidgetState?._contentPageKey.currentState;
return state?._currentSelected;
}