isParallelizable property

bool isParallelizable

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

bool get isParallelizable => true;