getCurrentActivatedPlugin static method

Pluggable? getCurrentActivatedPlugin()

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;
}