FeedPostCard constructor

const FeedPostCard({
  1. required BuildContext buildContext,
  2. required PostList feedPostApi,
  3. List<Reporting>? reportingOptions,
  4. String? youtubeUrl,
  5. String? vimeoUrl,
  6. TextStyle? postedTimeStyle,
  7. TextStyle? feedTitleStyle,
  8. TextStyle? descriptionStyle,
  9. TextStyle? feedAudioTitleStyle,
  10. TextStyle? nameStyle,
  11. TextStyle? userNameStyle,
  12. TextStyle? groupTagsStyle,
  13. num? noOfLikesCallBack,
  14. bool? isLikedCallback,
  15. UserProfile? profileDetails,
  16. dynamic notifyParentPostList(
    1. bool isliked,
    2. num likes,
    3. num index
    )?,
  17. num? index,
  18. Key? key,
})

Implementation

const FeedPostCard({
  required this.buildContext,
  required this.feedPostApi,
  this.reportingOptions,
  this.youtubeUrl,
  this.vimeoUrl,
  this.postedTimeStyle,
  this.feedTitleStyle,
  this.descriptionStyle,
  this.feedAudioTitleStyle,
  this.nameStyle,
  this.userNameStyle,
  this.groupTagsStyle,
  this.noOfLikesCallBack,
  this.isLikedCallback,
  this.profileDetails,
  this.notifyParentPostList,
  this.index,
  final Key? key,
}) : super(key: key);