unregisterWatchController static method

void unregisterWatchController(
  1. String controllerId
)

Implementation

static void unregisterWatchController(String controllerId) {
  if (_watchController.containsKey(controllerId)) {
    _watchController.remove(controllerId);
  }
}