instantSync static method

void instantSync(
  1. String name,
  2. {Map? arguments}
)

Emit an instant event.

Implementation

static void instantSync(String name, {Map? arguments}) {
  if (!_hasTimeline) return;
  // TODO: When NNBD is complete, delete the following line.
  ArgumentError.checkNotNull(name, 'name');
  if (!_isDartStreamEnabled()) {
    // Stream is disabled.
    return;
  }
  // Instant events don't have an id because they don't need to be paired with
  // other events.
  int taskId = 0;
  _reportTaskEvent(taskId, /*flowId=*/ _noFlowId, _instant, name,
      _argumentsAsJson(arguments));
}