i'm having a problem do declare a List<> in Dart.
Here is my code:
final lockers = List<Locker>();
for (Map map in listaResponse) {
Locker l = Locker.fromJson(map);
lockers.add(l);
}
And this is how it looks like:
I have no idea about what could possibly be the cause for that.