getListOfMap property
A helper to get a list of LastPlayedEntity as a Map.
Implementation
List<Map> get getListOfMap {
List<Map> tempList = [];
for (var entity in this) {
tempList.add(entity.getMap);
}
return tempList;
}
A helper to get a list of LastPlayedEntity as a Map.
List<Map> get getListOfMap {
List<Map> tempList = [];
for (var entity in this) {
tempList.add(entity.getMap);
}
return tempList;
}