onCreateAppBar method
Implementation
PreferredSizeWidget? onCreateAppBar() {
if (isDisplayAppBar == false) return null;
final appBar = AppBar(
elevation: elevation,
backgroundColor: naviBarBackgroundColor,
leading: _onCreateBarLeftItem(),
leadingWidth: leadingWidth,
title: onCreateBarTitle(),
actions: _onCreateBarRightItem(),
);
return appBar;
}