close method
Implementation
Future<void> close() async {
if (_timeout != null) {
_timeout!.cancel();
}
await networkController.close();
await cacheController.close();
}
Future<void> close() async {
if (_timeout != null) {
_timeout!.cancel();
}
await networkController.close();
await cacheController.close();
}