Page constructor

Page(
  1. String title,
  2. Widget child, {
  3. bool withScaffold = true,
  4. bool padding = true,
  5. bool showLog = false,
})

Implementation

Page(
  this.title,
  Widget child, {
  this.withScaffold = true,
  this.padding = true,
  this.showLog = false,
}) : builder = ((_) => child);