close method
Releases adapter-managed resources (HTTP clients, timers, etc.).
Called when the scheduler shuts down. Default implementation is a no-op.
Implementation
@override
Future<void> close() async {
if (_ownsClient) {
httpClient.close();
}
}