dio_plus 1.0.0 dio_plus: ^1.0.0 copied to clipboard
Extended version of original dio package.
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();