close method

  1. @override
Future<void> close({
  1. bool force = false,
})
override

Close the dio instance associated with this service instance.

Note that you will not be able to use other service that uses this same dio instance.

Implementation

@override
Future<void> close({bool force = false}) async => dio.close(force: force);