Used to convert a List dynamic into a List SongModel.
List dynamic
List SongModel
List<SongModel> toSongModel() => map((e) => SongModel(e)).toList();