PageBlockEmbedPost constructor

const PageBlockEmbedPost({
  1. required String url,
  2. required int webpageId,
  3. required int authorPhotoId,
  4. required String author,
  5. required DateTime date,
  6. required List<PageBlockBase> blocks,
  7. required PageCaptionBase caption,
})

Page Block Embed Post constructor.

Implementation

const PageBlockEmbedPost({
  required this.url,
  required this.webpageId,
  required this.authorPhotoId,
  required this.author,
  required this.date,
  required this.blocks,
  required this.caption,
}) : super._();