Comment constructor

const Comment({
  1. required int id,
  2. required int numChildren,
  3. required bool pinned,
  4. required Post post,
})

Implementation

const factory Comment({
  required int id,
  required int numChildren,
  required bool pinned,
  required Post post,
}) = _Comment;