Ability to continue downloading interrupted files.
Features
Downloading files with continuing downloading interrupted files
Getting started
// ability to continue downloading interrupted files
CustomDio customDio = CustomDio();
Usage
await customDio.download(
'url',
'savePath',
cancelToken: cancelToken,
deleteIfExist: false,
headers: {},
onReceiveProgress: (total, received, chunkSize) {},
);
// to cancel
cancelToken.cancel();