WebFeedItem constructor

const WebFeedItem({
  1. String title = '',
  2. String body = '',
  3. List<String?> links = const <String>[],
  4. DateTime? updated,
})

Implementation

const WebFeedItem({
  this.title = '',
  this.body = '',
  this.links = const <String>[],
  this.updated,
});