IThreadStatusValues constructor

IThreadStatusValues(
  1. IThreadStatus initializing_,
  2. IThreadStatus ready_,
  3. IThreadStatus error_,
  4. IThreadStatus complete_,
  5. IThreadStatus paused_,
)

Implementation

IThreadStatusValues(this.initializing_,
    this.ready_,
    this.error_,
    this.complete_,
    this.paused_) : delegate = List.unmodifiable([initializing_,ready_,error_,complete_,paused_]);