ProgressNotification constructor

const ProgressNotification({
  1. required String progressToken,
  2. required double progress,
  3. double? total,
})

Implementation

const ProgressNotification({
  required this.progressToken,
  required this.progress,
  this.total,
});