TrackPublishedGetResponse constructor

TrackPublishedGetResponse({
  1. int? trackId,
  2. String? title,
  3. String? artist,
  4. String? album,
  5. int? ownerId,
  6. String? ownerName,
  7. String? ownerContainer,
  8. String? name,
  9. String? fileHash,
  10. double? rating,
  11. String? audioFile,
  12. String? duration,
  13. String? imageFile,
  14. List<String>? genreTracks = const [],
})

Returns a new TrackPublishedGetResponse instance.

Implementation

TrackPublishedGetResponse({
  this.trackId,
  this.title,
  this.artist,
  this.album,
  this.ownerId,
  this.ownerName,
  this.ownerContainer,
  this.name,
  this.fileHash,
  this.rating,
  this.audioFile,
  this.duration,
  this.imageFile,
  this.genreTracks = const [],
});