PageBlockPhoto constructor

const PageBlockPhoto({
  1. required bool spoiler,
  2. required int photoId,
  3. required PageCaptionBase caption,
  4. String? url,
  5. int? webpageId,
})

Page Block Photo constructor.

Implementation

const PageBlockPhoto({
  required this.spoiler,
  required this.photoId,
  required this.caption,
  this.url,
  this.webpageId,
}) : super._();