matchesStatePath method

bool matchesStatePath(
  1. List<Type> path
)

Check if the state machine contains a value that partially matches the given path.

Implementation

bool matchesStatePath(List<Type> path) {
  return value.matchesStatePath(path);
}