FeedClientDTO constructor

FeedClientDTO({
  1. int? feedId,
  2. String? duration,
  3. DateTime? calendarDate,
  4. required String name,
  5. String? jsDate,
  6. CalendarDay? calendarDay,
  7. List<PlaylistFeedDTO>? playlistFeeds = const [],
})

Returns a new FeedClientDTO instance.

Implementation

FeedClientDTO({
  this.feedId,
  this.duration,
  this.calendarDate,
  required this.name,
  this.jsDate,
  this.calendarDay,
  this.playlistFeeds = const [],
});