deactivatePluggable method

void deactivatePluggable(
  1. Pluggable pluggable
)

Implementation

void deactivatePluggable(Pluggable pluggable) {
  if (_activatedPluggable?.name == pluggable.name) {
    _activatedPluggable = null;
  }
}