MainAppBar constructor Null safety

MainAppBar(
  1. {Key? key,
  2. required String title,
  3. required Function onLogin,
  4. required bool loggedIn}
)

Implementation

MainAppBar({
  Key? key,
  required this.title,
  required this.onLogin,
  required this.loggedIn,
}) : super(key: key);