toArtistModel method

List<ArtistModel> toArtistModel()

Used to convert a List dynamic into a List ArtistModel.

Implementation

List<ArtistModel> toArtistModel() => map((e) => ArtistModel(e)).toList();