Each Dart isolate has a single thread of execution and shares no mutable objects with other isolates. To communicate with each other, isolates use message passing.
Read moreIs Dart single threaded or multithreaded?
Because Dart language is a single threaded language. However, Flutter uses several threads to do its work.
Read more