nodeById method

LeidingNode? nodeById(
  1. String id
)

Implementation

LeidingNode? nodeById(String id) =>
    _boom?.nodes.where((n) => n.id == id).firstOrNull;