NavPage constructor

const NavPage({
  1. Key? key,
  2. Navbar? navbar,
  3. Widget? child,
  4. bool fullscreen = false,
})

Creates a NavPage widget.

The child parameter is optional but typically provided. The navbar parameter is also optional.

Implementation

const NavPage({super.key, this.navbar, this.child, this.fullscreen = false});