MusicModel constructor

MusicModel({
  1. required String url,
  2. String? title,
  3. String? description,
})

Creates a new MusicModel instance.

The url is required and must not be null.

Implementation

MusicModel({required this.url, this.title, this.description});