PageBlockEmbed constructor

const PageBlockEmbed({
  1. required bool fullWidth,
  2. required bool allowScrolling,
  3. String? url,
  4. String? html,
  5. int? posterPhotoId,
  6. int? w,
  7. int? h,
  8. required PageCaptionBase caption,
})

Page Block Embed constructor.

Implementation

const PageBlockEmbed({
  required this.fullWidth,
  required this.allowScrolling,
  this.url,
  this.html,
  this.posterPhotoId,
  this.w,
  this.h,
  required this.caption,
}) : super._();