TrackIndexResponseData constructor

TrackIndexResponseData({
  1. int? trackId,
  2. String? name,
  3. String? title,
  4. String? album,
  5. TrackStatus? status,
  6. String? artist,
  7. String? isrc,
  8. String? year,
  9. String? audioFile,
  10. SelectionDuration? duration,
  11. int? ownerId,
  12. String? ownerName,
  13. String? ownerContainer,
  14. double? rating,
  15. bool? publication,
  16. bool? cancel,
  17. DateTime? cancelDate,
  18. String? fileHash,
  19. DateTime? createDate,
  20. List<String>? companyTypeTracks = const [],
  21. List<String>? genreTracks = const [],
  22. String? genreTracksString,
  23. String? imageFile,
})

Returns a new TrackIndexResponseData instance.

Implementation

TrackIndexResponseData({
  this.trackId,
  this.name,
  this.title,
  this.album,
  this.status,
  this.artist,
  this.isrc,
  this.year,
  this.audioFile,
  this.duration,
  this.ownerId,
  this.ownerName,
  this.ownerContainer,
  this.rating,
  this.publication,
  this.cancel,
  this.cancelDate,
  this.fileHash,
  this.createDate,
  this.companyTypeTracks = const [],
  this.genreTracks = const [],
  this.genreTracksString,
  this.imageFile,
});