UpdaterController constructor

UpdaterController({
  1. void listener(
    1. UpdateStatus status
    )?,
  2. void onChecked(
    1. bool isAvailable
    )?,
  3. void progress(
    1. int current,
    2. int total
    )?,
  4. void onError(
    1. Object status
    )?,
})

Implementation

UpdaterController({
  this.listener,
  this.onChecked,
  this.progress,
  this.onError,
});