Flutter – Different behavior when using const before a const constructor in Dart
In the Dart documentation, it states that we should not place const before initializing a const constructor, as the keyword is already implicit. However, can someone explain why the following codes exhibit different behaviors? class Person{ final List<String> names; const…