ChartItem constructor
ChartItem({
- required String title,
- required String artists,
- required String videoId,
- String? duration,
- String? albumArt,
- String? audioUrl,
- required String country,
- required String chartType,
- String? rank,
- String trend = 'neutral',
- String? views,
- bool isExplicit = false,
- String? playlistId,
- Map<
String, dynamic> ? album,
Implementation
ChartItem({
required this.title,
required this.artists,
required this.videoId,
this.duration,
this.albumArt,
this.audioUrl,
required this.country,
required this.chartType,
this.rank,
this.trend = 'neutral',
this.views,
this.isExplicit = false,
this.playlistId,
this.album,
});