unregisterBaseController static method

void unregisterBaseController(
  1. String controllerId
)

Implementation

static void unregisterBaseController(String controllerId) {
  if (_baseController.containsKey(controllerId)) {
    _baseController.remove(controllerId);
  }
}