unregisterPanel method
Implementation
void unregisterPanel(Object id) {
final index = panelsInfo.indexWhere((e) => e.id == id);
if (index == -1) return;
panelsInfo.removeAt(index);
defaultSizes.removeAt(index);
notifyListeners();
}
void unregisterPanel(Object id) {
final index = panelsInfo.indexWhere((e) => e.id == id);
if (index == -1) return;
panelsInfo.removeAt(index);
defaultSizes.removeAt(index);
notifyListeners();
}