Anderson

Results 2 comments of Anderson

I had the same problem as described here and I haven't found any definitive solution so far. Here's what I did to resolve it: 1o. I put this permission in...

I found soluction. Replace the hashList method with Object.hashAll, which is the updated Dart version: **Replace this:** ``` return hashList([ ... ]); ``` **With this:** ``` return Object.hashAll([ ... ]);...