state property

UnmodifiableMapView<Coordinate, Base> get state

A map of reflecting the state of the two-dimensional cellular automaton.

Implementation

UnmodifiableMapView<Coordinate, Base> get state {
  if (_locked) throw LockedStateException();
  return UnmodifiableMapView(_state);
}