PostWidget constructor

const PostWidget({
  1. Key? key,
  2. required Post post,
  3. VoidCallback? onLike,
  4. VoidCallback? onComment,
})

Implementation

const PostWidget({
  super.key,
  required this.post,
  this.onLike,
  this.onComment,
});