FeedGetResponse constructor

FeedGetResponse({
  1. int? feedId,
  2. String? userId,
  3. String? userName,
  4. String? name,
  5. bool? random,
  6. bool? stopPlay,
  7. String? duration,
  8. DateTime? createDate,
  9. DateTime? changeDate,
  10. CalendarDay? calendarDay,
  11. DateTime? calendarDate,
  12. List<FeedPlaylistResponse>? playlists = const [],
})

Returns a new FeedGetResponse instance.

Implementation

FeedGetResponse({
  this.feedId,
  this.userId,
  this.userName,
  this.name,
  this.random,
  this.stopPlay,
  this.duration,
  this.createDate,
  this.changeDate,
  this.calendarDay,
  this.calendarDate,
  this.playlists = const [],
});