close abstract method

Future<void> close([
  1. bool force = true
])

Releases any resources used by this handler.

This method is called when the test client is closed. It should clean up any resources used by the handler, such as closing server connections.

force indicates whether to force close any active connections.

Implementation

Future<void> close([bool force = true]);