get method

State? get(
  1. String id
)

Returns the state for the given ID.

Implementation

State? get(String id ) {
	return states[id];
}