FeedEntryModel constructor

const FeedEntryModel(
  1. String? subtitle, {
  2. required String title,
  3. required String body,
  4. required String source,
  5. required DateTime dateTime,
})

Implementation

const FeedEntryModel(this.subtitle,
    {required this.title,
    required this.body,
    required this.source,
    required this.dateTime});