GradientAppBar constructor

const GradientAppBar({
  1. Key? key,
  2. List<Widget>? actions,
  3. Widget? title,
  4. bool? centerTitle,
  5. required Gradient gradient,
  6. SystemUiOverlayStyle? overlayStyle,
})

Implementation

const GradientAppBar({
  super.key,
  this.actions,
  this.title,
  this.centerTitle,
  required this.gradient,
  this.overlayStyle,
});