On this page
instantSync method
void instantSync(Emit an instant event.
Source
static void instantSync(String name, {Map arguments}) {
if (_isProduct) {
return;
}
if (name is! String) {
throw new ArgumentError.value(name, 'name', 'Must be a String');
}
if (!_isDartStreamEnabled()) {
// Stream is disabled.
return;
}
Map instantArguments;
if (arguments is Map) {
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.dartlang.org/stable/1.24.3/dart-developer/Timeline/instantSync.html