recordScreenEnter method
Records when a screen was entered.
Implementation
void recordScreenEnter(String screenName) {
final stopwatch = Stopwatch()..start();
_screenStopwatches[screenName] = stopwatch;
}
Records when a screen was entered.
void recordScreenEnter(String screenName) {
final stopwatch = Stopwatch()..start();
_screenStopwatches[screenName] = stopwatch;
}