Bugs
Flutter Issue
- Error: 🐞
The constructor being called isn't a const constructor. Try removing 'const' from the constructor invocation.
- Solution 👇
Search for a command to run...
The constructor being called isn't a const constructor. Try removing 'const' from the constructor invocation.
const for existing widgets or class and trying to implement in a child as Container, Images, etc. it will throw the error above mention: "The constructor being called isn't a const constructor. Try removing 'const' from the constructor invocation." make sure you remove the const keyword because it's constant.