Feed constructor

const Feed({
  1. required String tag,
  2. required String sort,
  3. List<Authorperm>? posts,
  4. List<Authorperm>? comments,
})

Implementation

const Feed({
  required this.tag,
  required this.sort,
  this.posts,
  this.comments,
});