In my Flutter log I\'m constantly getting this messages(just with some different numbers):
Background concurrent copying GC freed 153040(3MB) AllocSpace objects,
Obviously it was a dumb mistake by myself... I made some update function, that added something to the Stream
, and then instantly got called again because it was also listening to the Stream
. So there was an infinite loop of adding and reacting to the Stream
.
Thanks to anyone helping anyways, there are some useful tips!