unregisterCollectionController static method

void unregisterCollectionController(
  1. String controllerId
)

Implementation

static void unregisterCollectionController(String controllerId) {
  if (_collectionController.containsKey(controllerId)) {
    _collectionController.remove(controllerId);
  }
}