isParallelizable property

  1. @override
bool isParallelizable
override

Whether this task may run in parallel with others inside Isolates.

Even if this getter returns false, this task may still run asynchronously with other tasks on the same Isolate... to avoid that, impose dependencies between tasks.

Returns true by default.

Implementation

@override
bool get isParallelizable => _task.isParallelizable;