PageBlockEmbeddedPost constructor

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

Implementation

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