getListOfMap property

List<Map> getListOfMap

A helper to get a list of SongEntity as a Map.

Implementation

List<Map> get getListOfMap {
  List<Map> tempList = [];

  for (var entity in this) {
    tempList.add(entity.getMap);
  }

  return tempList;
}