buildAppBar method

HareAppBar? buildAppBar(
  1. BuildContext context, {
  2. Widget? leading,
  3. double? leadingWidth,
  4. double? titleSpacing,
  5. Widget? title,
  6. List<Widget>? actions,
  7. bool? centerTitle,
  8. PreferredSizeWidget? bottom,
})

Implementation

HareAppBar? buildAppBar(
  BuildContext context, {
  Widget? leading,
  double? leadingWidth,
  double? titleSpacing,
  Widget? title,
  List<Widget>? actions,
  bool? centerTitle,
  PreferredSizeWidget? bottom,
}) {
  return HareAppBar(leading: leading, leadingWidth: leadingWidth, titleSpacing: titleSpacing, title: title, actions: actions, centerTitle: centerTitle, bottom: bottom);
}