MmJob constructor

MmJob({
  1. String? id,
  2. String? type,
  3. int? createAt,
  4. int? startAt,
  5. int? lastActivityAt,
  6. String? status,
  7. int? progress,
  8. Map? data,
})

Returns a new MmJob instance.

Implementation

MmJob({
  this.id,
  this.type,
  this.createAt,
  this.startAt,
  this.lastActivityAt,
  this.status,
  this.progress,
  this.data,
});