PageBlockEmbedded constructor

const PageBlockEmbedded({
  1. required String url,
  2. required String html,
  3. Photo? posterPhoto,
  4. required int width,
  5. required int height,
  6. required PageBlockCaption caption,
  7. required bool isFullWidth,
  8. required bool allowScrolling,
})

An embedded web page

Implementation

const PageBlockEmbedded({
  required this.url,
  required this.html,
  this.posterPhoto,
  required this.width,
  required this.height,
  required this.caption,
  required this.isFullWidth,
  required this.allowScrolling,
});