CreateEditPost constructor

CreateEditPost({
  1. required HeaderView headerView,
  2. required bool isEdit,
  3. UserProfile? profileDetails,
  4. PostList? feedPostApi,
  5. List<MoreOptions>? moreOptions,
  6. PostType? selectedOption,
  7. List<PostType>? postType,
  8. Color? iconColor,
  9. Color? iconBackgroundColor,
  10. TextStyle? headingStyle,
  11. TextStyle? descriptionStyle,
  12. TextStyle? nameStyle,
  13. TextStyle? userNameStyle,
  14. TextStyle? groupTagsStyle,
  15. Key? key,
})

Implementation

CreateEditPost({
  required this.headerView,
  required this.isEdit,
  this.profileDetails,
  this.feedPostApi,
  this.moreOptions,
  this.selectedOption,
  this.postType,
  this.iconColor,
  this.iconBackgroundColor,
  this.headingStyle,
  this.descriptionStyle,
  this.nameStyle,
  this.userNameStyle,
  this.groupTagsStyle,
  final Key? key,
}) : super(key: key);