Emit an instant event.
static void instantSync(String name, {Map arguments}) { if (!_hasTimeline) return; ArgumentError.checkNotNull(name, 'name'); if (!_isDartStreamEnabled()) { // Stream is disabled. return; } Map instantArguments; if (arguments != null) { instantArguments = new Map.from(arguments); } _reportInstantEvent( _getTraceClock(), 'Dart', name, _argumentsAsJson(instantArguments)); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-developer/Timeline/instantSync.html