Navbar constructor

const Navbar(
  1. {Key? key,
  2. required String title,
  3. required Widget child}
)

Implementation

const Navbar({
  Key? key,
  required this.title,
  required this.child,
}) : super(key: key);