clear method
void
clear()
Clear all mock state
Implementation
void clear() {
for (var state in _state.values) {
state.dispose();
}
_state.clear();
}
Clear all mock state
void clear() {
for (var state in _state.values) {
state.dispose();
}
_state.clear();
}