containsState method

bool containsState(
  1. String name
)

Returns true if this storage contains a State with name.

Implementation

bool containsState(String name) {
  return _states[name] != null;
}