Reputation: 91
I am uploading a file with help of Dio in flutter. To pause uploading i cancel the token. what should i do for upload that file again from pause?. any solution for remove that cancelled token or any other way..
to press button of stop uploading i called following code
token.cancel("Token Cancelled");
Upvotes: 2
Views: 2123
Reputation: 91
I got the answer.
you just have to reinitialize you CancelToken() variable where you need. for example.
if(token.isCancelled){ token = new CancelToken(); }
Upvotes: 4