Page constructor

Page({
  1. String? content,
  2. String? name,
  3. List<Page>? subpages,
})

Implementation

Page({
  this.content,
  this.name,
  this.subpages,
});