PageBlockPhoto constructor

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

Page Block Photo constructor.

Implementation

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