Page constructor

Page({
  1. String? name,
  2. bool? hasNavigation,
  3. String? pageId,
  4. String? key,
  5. Component? initialComponent,
  6. Component? child,
  7. String? pageType,
})

Implementation

Page(
    {this.name,
    this.hasNavigation,
    this.pageId,
    this.key,
    this.initialComponent,
    this.child,
    this.pageType});