W3cubDocs

/Dart 2

timeSync method

dynamic timeSync (String name, TimelineSyncFunction function, { Map arguments, Flow flow })

A utility method to time a synchronous function. Internally calls function bracketed by calls to startSync and finishSync.

Implementation

static dynamic timeSync(String name, TimelineSyncFunction function,
    {Map arguments, Flow flow}) {
  startSync(name, arguments: arguments, flow: flow);
  try {
    return function();
  } finally {
    finishSync();
  }
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-developer/Timeline/timeSync.html