KntBaseToolBar constructor

const KntBaseToolBar({
  1. Key? key,
  2. required String titlePage,
  3. Widget? leadingIcon,
  4. List<Widget>? trailingActions,
  5. BoxDecoration? decoration,
  6. Color? titleColor,
  7. bool includeStatusBar = true,
})

Implementation

const KntBaseToolBar({
  super.key,
  required this.titlePage,
  this.leadingIcon,
  this.trailingActions,
  this.decoration,
  this.titleColor,
  this.includeStatusBar = true,
});