patch method

Future<void> patch(
  1. Release release,
  2. {void onProgress(
    1. double progress
    )?}
)

Downloads and installs a given release.

Use onProgress to get the progress of the download in percent. progress is a value between 0 and 1.

Throws an UnsupportedError if canPatch returns false.

Implementation

Future<void> patch(
  Release release, {
  void Function(double progress)? onProgress,
}) =>
    throw UnsupportedError(
      "Can't patch, as patching is not supported.",
    );