bool unregister(String name) { final plugin = _plugins.remove(name); if (plugin == null) return false; _order.remove(name); plugin.onDestroy(); return true; }