MyUpdateDialog constructor

const MyUpdateDialog({
  1. Key? key,
  2. required UpdateInfo updateInfo,
  3. required ValueNotifier<DownloadStatus> statusNotifier,
  4. required ValueNotifier<double> progressNotifier,
})

Implementation

const MyUpdateDialog({
  super.key,
  required this.updateInfo,
  required this.statusNotifier,
  required this.progressNotifier,
});