NewsFeed constructor

const NewsFeed({
  1. required HeaderView headerView,
  2. List<MoreOptions>? moreOptions,
  3. String? hintText,
  4. List<PostType>? postType,
  5. TextStyle? nameStyle,
  6. TextStyle? userNameStyle,
  7. TextStyle? groupTagsStyle,
  8. Color? iconColor,
  9. Color? iconBackgroundColor,
  10. TextStyle? headingStyle,
  11. TextStyle? descriptionStyle,
  12. TextStyle? hintTextStyle,
  13. IconData? icon,
  14. TextStyle? postedTimeStyle,
  15. TextStyle? feedTitleStyle,
  16. TextStyle? feedDescriptionStyle,
  17. TextStyle? feedAudioTitleStyle,
  18. TextStyle? commentNameStyle,
  19. TextStyle? commentStyle,
  20. TextStyle? commentPostedTimeStyle,
  21. Color? commentSubmitButtonColor,
  22. Key? key,
})

Implementation

const NewsFeed({
  required this.headerView,
  this.moreOptions,
  this.hintText,
  this.postType,
  this.nameStyle,
  this.userNameStyle,
  this.groupTagsStyle,
  this.iconColor,
  this.iconBackgroundColor,
  this.headingStyle,
  this.descriptionStyle,
  this.hintTextStyle,
  this.icon,
  this.postedTimeStyle,
  this.feedTitleStyle,
  this.feedDescriptionStyle,
  this.feedAudioTitleStyle,
  this.commentNameStyle,
  this.commentStyle,
  this.commentPostedTimeStyle,
  this.commentSubmitButtonColor,
  final Key? key,
}) : super(key: key);