Start a synchronous operation within this task named name
. Optionally takes a Map of arguments
.
void start(String name, {Map arguments}) { if (!_hasTimeline) return; ArgumentError.checkNotNull(name, 'name'); var block = new _AsyncBlock._(name, _taskId); if (arguments != null) { block._arguments = arguments; } _stack.add(block); block._start(); }
© 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/TimelineTask/start.html