markReady static method

void markReady()

Signal that routing / splash is done; queued links are replayed.

Implementation

static void markReady() {
  if (_ready || _queue == null) return;
  _ready = true;
  _queue!.markReady();
  _log('SmartLink marked ready');
}