PageBlockEmbeddedPost constructor

const PageBlockEmbeddedPost({
  1. required String url,
  2. required String author,
  3. Photo? authorPhoto,
  4. required int date,
  5. required List<PageBlock> pageBlocks,
  6. required PageBlockCaption caption,
})

An embedded post

Implementation

const PageBlockEmbeddedPost({
  required this.url,
  required this.author,
  this.authorPhoto,
  required this.date,
  required this.pageBlocks,
  required this.caption,
});