In Flutter, can a List object refer to its own index at construction?
I am used to constructing an empty List and then adding items to it. List<String> example = []; The index of the list is automatically created and taken care of so that I never have to think about it, but…