getPoint method

GraphPoint getPoint(
  1. ID id
)

Implementation

GraphPoint getPoint(ID id) {
  final point = coords[id];
  return GraphPoint(id, point!.$1, point.$2);
}