finish method

void finish()

Finish the last synchronous operation that was started.

Source

void finish() {
  if (_isProduct) {
    return;
  }
  if (_stack.length == 0) {
    throw new StateError('Uneven calls to start and finish');
  }
  // Pop top item off of stack.
  var block = _stack.removeLast();
  block._finish();
}

© 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/TimelineTask/finish.html