SupervisorEngine constructor

SupervisorEngine({
  1. String? status,
  2. String? appState,
  3. num? overallDownloadProgress,
  4. List<SupervisorContainer> containers = const [],
  5. List<SupervisorImage> images = const [],
})

Returns a new SupervisorEngine instance.

Implementation

SupervisorEngine({
  this.status,
  this.appState,
  this.overallDownloadProgress,
  this.containers = const [],
  this.images = const [],
});