forest property

Future<List<Tree>> forest

Return a copy of all planted Tree.

Implementation

Future<List<Tree>> get forest {
  return _lock.synchronized(() => List.unmodifiable(_trees));
}