microtaskCount property

int microtaskCount
override

The number of outstanding microtasks in the queue.

Implementation

@override
int get microtaskCount {
  // The Dart SDK doesn't report this number.
  assert(false, 'microtaskCount cannot be reported when running in real time');
  return -1;
}