M3uGenericEntry constructor

M3uGenericEntry({
  1. required String title,
  2. required Map<String, String?> attributes,
  3. required String link,
})

Generic constructor with

title of the track/stream attributes custom attributes, can be null link the link to the source of the track/stream

Implementation

M3uGenericEntry(
    {required this.title, required this.attributes, required this.link});