TrackPlayListDTO constructor

TrackPlayListDTO({
  1. int? trackId,
  2. int? playListId,
  3. int? index,
  4. bool? active,
})

Returns a new TrackPlayListDTO instance.

Implementation

TrackPlayListDTO({
  this.trackId,
  this.playListId,
  this.index,
  this.active,
});