BlogPost constructor

const BlogPost({
  1. Key? key,
  2. String tag = '',
  3. String title = '',
  4. String accountName = '',
  5. String uploadDuration = '',
  6. String blogPostImage = '',
  7. Widget? profileImage,
})

Implementation

const BlogPost({
  super.key,
  this.tag = '',
  this.title = '',
  this.accountName = '',
  this.uploadDuration = '',
  this.blogPostImage = '',
  this.profileImage,
});