IndividualBlogScreenLayout constructor

const IndividualBlogScreenLayout({
  1. Key? key,
  2. Widget? profileImage,
  3. Widget? blogImage,
  4. Widget? imageDescription,
  5. Widget? blogContent,
  6. String accountName = '',
  7. String heading = '',
  8. String uploadDuration = '',
  9. String likeCount = '',
  10. String headLine = '',
  11. String blogContentText = '',
  12. String imageDescriptionText = '',
  13. VoidCallback? onBackPressed,
  14. Widget? customHeadline,
})

Implementation

const IndividualBlogScreenLayout({
  super.key,
  this.profileImage,
  this.blogImage,
  this.imageDescription,
  this.blogContent,
  this.accountName = '',
  this.heading = '',
  this.uploadDuration = '',
  this.likeCount = '',
  this.headLine = '',
  this.blogContentText = '',
  this.imageDescriptionText = '',
  this.onBackPressed,
  this.customHeadline,
});