NO Dart doesnt support multithreading like java /python. But you can use multiple isolates to imitate this requirement.
Read moreWhat is concurrency in flutter?
Parallelism is doing multiple tasks at the same time. On the other hand, Concurrency is the execution of tasks in parallel . However, it computes the multiple tasks in a few seconds (imitating Parallelism). Source.
Read more