SundayCupertinoAppBar constructor

const SundayCupertinoAppBar({
  1. Key? key,
  2. Widget? leading,
  3. bool automaticallyImplyLeading = true,
  4. Widget? middle,
  5. Widget? trailing,
  6. Border? border,
  7. Color? backgroundColor,
  8. Brightness? brightness,
  9. EdgeInsetsDirectional? padding,
  10. bool transitionBetweenRoutes = true,
  11. required String heroTag,
})

Creates a SundayCupertinoAppBar.

The automaticallyImplyLeading and transitionBetweenRoutes arguments must not be null.

Implementation

const SundayCupertinoAppBar({
  super.key,
  this.leading,
  this.automaticallyImplyLeading = true,
  this.middle,
  this.trailing,
  this.border,
  this.backgroundColor,
  this.brightness,
  this.padding,
  this.transitionBetweenRoutes = true,
  required this.heroTag,
});