forEachState method
Implementation
@nonVirtual
void forEachState(ForeachStateFunction fn) {
for (var state in _states) {
if (state.mounted) {
fn(state);
}
}
}
@nonVirtual
void forEachState(ForeachStateFunction fn) {
for (var state in _states) {
if (state.mounted) {
fn(state);
}
}
}