PostWidget constructor

const PostWidget({
  1. Key? key,
  2. required AppModel app,
  3. required String pageId,
  4. required String memberId,
  5. required String? currentMemberId,
  6. required String? photoURL,
  7. required String feedId,
  8. required ThumbStyle? thumbStyle,
  9. required PostDetails details,
  10. required bool isEditable,
  11. required BackgroundModel? backgroundOverride,
  12. required bool canBlock,
})

Implementation

const PostWidget(
    {super.key,
    required this.app,
    required this.pageId,
    required this.memberId,
    required this.currentMemberId,
    required this.photoURL,
    required this.feedId,
    required this.thumbStyle,
    required this.details,
    required this.isEditable,
    required this.backgroundOverride,
    required this.canBlock});