serialFutureResume function
Implementation
void serialFutureResume(Object tag) {
final queue = _queues[tag];
if (queue != null) {
// Things were added while paused
_runQueue(tag, queue);
} else {
// No queue to run, unlock
_keys.unlockTag(tag);
}
}