Page constructor

const Page({
  1. required bool part,
  2. required bool rtl,
  3. required bool v2,
  4. required String url,
  5. required List<PageBlockBase> blocks,
  6. required List<PhotoBase> photos,
  7. required List<DocumentBase> documents,
  8. int? views,
})

Page constructor.

Implementation

const Page({
  required this.part,
  required this.rtl,
  required this.v2,
  required this.url,
  required this.blocks,
  required this.photos,
  required this.documents,
  this.views,
}) : super._();