downloadPatchAssets abstract method

Future<bool> downloadPatchAssets({
  1. required UpdateManifest manifest,
  2. required void onProgress(
    1. double progress
    ),
})

Downloads patch binary assets with onProgress reporting.

Implementation

Future<bool> downloadPatchAssets({
  required UpdateManifest manifest,
  required void Function(double progress) onProgress,
});