resetTime static method

void resetTime({
  1. String? key,
})

Resets the last timestamp for a specific key.

Implementation

static void resetTime({String? key}) {
  _lastPrintTimes.remove(key ?? _defaultKey);
}