unregisterPanel method

void unregisterPanel(
  1. Object id
)

Implementation

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