removeNodeById method

void removeNodeById(
  1. int id
)

Implementation

void removeNodeById(int id) {
  _nodeMap.remove(id);
}