79093871

Date: 2024-10-16 11:47:41
Score: 1.5
Natty:
Report link

I ran into this problem, too. In my case, until I sort out what is the problem, I'm avoiding calling isolates in debug mode like this:

     final decryptedBytes = (kReleaseMode || kProfileMode)
            ? await compute(customEncrypter.decryptTheseBytes, encryptedBytes)
            : customEncrypter.decryptTheseBytes(encryptedBytes);

Although I cannot provide an answer to the question, I found this information usefull to better understand the problem:

Multiple Isolates vs one Isolate

https://martin-robert-fink.medium.com/dart-is-indeed-multi-threaded-94e75f66aa1e

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nacho