ThreadTaskModel constructor
ThreadTaskModel({})
Constructor for creating a ThreadTaskModel instance.
Implementation
ThreadTaskModel({
/// Unique identifier for the task.
required this.taskId,
/// Completer to handle asynchronous data processing.
required this.bytes$,
/// Identifier for the thread handling this task.
required this.threadId,
});