getAppBar method
Implementation
AppBar? getAppBar(BuildContext context) {
if (!baseScreen.hasAppBar) {
return null;
}
return baseScreen.customAppBar ??
AppBar(
title: baseScreen.title != null ? Text(baseScreen.title!) : null,
actions: const [],
);
}