PageBuilder constructor

const PageBuilder({
  1. Widget body(
    1. double w,
    2. double h
    )?,
  2. Widget portrait(
    1. double w,
    2. double h
    )?,
  3. Widget landscape(
    1. double w,
    2. double h
    )?,
  4. Key? key,
})

Implementation

const PageBuilder({
  this.body,
  this.portrait,
  this.landscape,
  super.key,
});