Comments constructor

const Comments({
  1. required Authorperm parent,
  2. required Map<String, Comment> items,
  3. required Map<String, List<String>> children,
})

Implementation

const Comments({
  required this.parent,
  required this.items,
  required this.children,
});