getAppBarOnlyTitle method
dynamic
getAppBarOnlyTitle({})
Implementation
getAppBarOnlyTitle(
{String? title,
List<Widget>? actions,
bool showLogo = true,
bool isBackButtonVisible = false,
bool isTransparent = false,
Function? backButtonCallback,
Widget? businessLogo}) {
return AppBarWithOnlyTitle(
title: title,
actions: actions,
showLogo: showLogo,
isBackButtonVisible: isBackButtonVisible,
backButtonCallback: backButtonCallback,
businessLogo: businessLogo,
isTransparent: isTransparent,
);
}