ProgressStartEventBody constructor

ProgressStartEventBody({
  1. bool? cancellable,
  2. String? message,
  3. num? percentage,
  4. required String progressId,
  5. int? requestId,
  6. required String title,
})

Implementation

ProgressStartEventBody({
  this.cancellable,
  this.message,
  this.percentage,
  required this.progressId,
  this.requestId,
  required this.title,
});