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