ProgressNotificationParams constructor

ProgressNotificationParams({
  1. MetaObject? $meta,
  2. required String progressToken,
  3. required num progress,
  4. num? total,
  5. String? message,
})

Implementation

ProgressNotificationParams({
  this.$meta,
  required this.progressToken,
  required this.progress,
  this.total,
  this.message,
});