Nimish Nandwana

Results 5 comments of Nimish Nandwana

@chiragmevada how did you resolve this ?

In my case, I made the domain `null` and then it worked.

@Vovcharaa you can try this ``` dart Future doSomething() async { _dio.interceptors.removeWhere((element) => element is PrettyDioLogger); try { final response = await _dio.get(url); return 'bla'; } catch (e) { return...