Feed constructor

Feed({
  1. int? feedId,
  2. required String name,
  3. String? duration,
  4. CalendarDay? calendarDay,
  5. DateTime? calendarDate,
  6. String? jsDate,
  7. bool? random,
  8. bool? stopPlay,
  9. DateTime? createDate,
  10. DateTime? changeDate,
  11. TicketApplicationUser? applicationUser,
  12. List<PlaylistFeed>? playlistFeeds = const [],
})

Returns a new Feed instance.

Implementation

Feed({
  this.feedId,
  required this.name,
  this.duration,
  this.calendarDay,
  this.calendarDate,
  this.jsDate,
  this.random,
  this.stopPlay,
  this.createDate,
  this.changeDate,
  this.applicationUser,
  this.playlistFeeds = const [],
});