ProgressNotification constructor

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

Implementation

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