appBarFun property

PreferredSizeWidget? appBarFun

Implementation

PreferredSizeWidget? get appBarFun {
  if (appBar is AppBar && appBarHeight == null) return appBar as AppBar;
  return appBar == null
      ? null
      : PreferredSize(
          preferredSize:
              Size.fromHeight(getStatusBarHeight + (appBarHeight ?? 30)),
          child: appBar!);
}