TIL: Flutter deletes toString from many classes

So, for example, logging log.info("Screen size: $size") will print the size correctly in debug mode, but it will print Screen size: Instance of ‘Size’` in production. This just bit me hard.

4 Likes