addTearDownCurrentForAll function

void addTearDownCurrentForAll(
  1. FutureOr<void> callback()
)

Registers a function to be run after the current test in forAll.

Implementation

void addTearDownCurrentForAll(FutureOr<void> Function() callback) {
  PropertyTestManager.addTearDownCurrentForAll(callback);
}