pendingTimersDebugString property

List<String> pendingTimersDebugString

The debug strings for all the current pending timers.

Implementation

List<String> get pendingTimersDebugString =>
    pendingTimers.map((timer) => timer.debugString).toList(growable: false);