FeedPlayResponse constructor

FeedPlayResponse({
  1. int? feedId,
  2. DateTime? createDate,
  3. DateTime? changeDate,
  4. CalendarDay? calendarDay,
  5. DateTime? calendarDate,
  6. List<FeedPlaylistPlayResponse>? playlists = const [],
  7. String? name,
})

Returns a new FeedPlayResponse instance.

Implementation

FeedPlayResponse({
  this.feedId,
  this.createDate,
  this.changeDate,
  this.calendarDay,
  this.calendarDate,
  this.playlists = const [],
  this.name,
});