toAlbumModel method
Used to convert a List dynamic
into a List AlbumModel
.
Implementation
List<AlbumModel> toAlbumModel() => map((e) => AlbumModel(e)).toList();
Used to convert a List dynamic
into a List AlbumModel
.
List<AlbumModel> toAlbumModel() => map((e) => AlbumModel(e)).toList();