close method

Future<void> close()

Implementation

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