close method

Future<void> close()

Stop the runner.

If the runner has allocated resources, e.g., an isolate, it should be released. No further calls to run should be made after calling stop.

Implementation

Future<void> close() => Future.value();