SupervisorService constructor

SupervisorService({
  1. String? name,
  2. String? status,
  3. num? releaseId,
  4. num? downloadProgress,
})

Returns a new SupervisorService instance.

Implementation

SupervisorService({
  this.name,
  this.status,
  this.releaseId,
  this.downloadProgress,
});