SILSmallAppBar constructor

const SILSmallAppBar({
  1. Key? key,
  2. required String title,
  3. List<String>? tabTitles,
  4. String? backRoute,
  5. Key? backButtonKey,
  6. Key? tabBarKey,
  7. double? size,
  8. double? elevation,
  9. Function? backRouteNavigationFunction,
  10. bool formatTitle = true,
})

Implementation

const SILSmallAppBar({
  Key? key,
  required this.title,
  this.tabTitles,
  this.backRoute,
  this.backButtonKey,
  this.tabBarKey,
  this.size,
  this.elevation,
  this.backRouteNavigationFunction,
  this.formatTitle = true,
}) : super(key: key);