getState method
Returns the current state for processId.
Implementation
Future<QueueState> getState(String processId) async {
final task = await getTask(processId);
return task.state;
}
Returns the current state for processId.
Future<QueueState> getState(String processId) async {
final task = await getTask(processId);
return task.state;
}