Worker<T> constructor

Worker<T>(
  1. bool condition(
    1. T data
    ),
  2. void callback(), {
  3. int? limit,
})

Implementation

Worker(this.condition, this.callback, {this.limit});