ArtistListScreen constructor

const ArtistListScreen(
  1. {Key? key,
  2. required List<ArtistsModel> artistList,
  3. required List<EventListData> totalEventList}
)

Implementation

const ArtistListScreen({
  Key? key,
  required this.artistList,
  required this.totalEventList,
}) : super(key: key);