Page constructor

Page({
  1. required PageMeta meta,
  2. required Channel channel,
  3. Map<String, Link> links = const {},
  4. Pointer? root,
  5. Pointer? document,
  6. Map<String, Element> page = const {},
})

Returns a new Page instance.

Implementation

Page({
  required this.meta,
  required this.channel,
  this.links = const {},
  this.root,
  this.document,
  this.page = const {},
});