MinimalistAppBar constructor

const MinimalistAppBar({
  1. Widget? title,
  2. Widget? leading,
  3. List<Widget>? actions,
  4. bool autoImplementLeading = true,
  5. Color? color,
  6. PreferredSizeWidget? bottom,
  7. Key? key,
})

Implementation

const MinimalistAppBar({
  this.title,
  this.leading,
  this.actions,
  this.autoImplementLeading = true,
  this.color,
  this.bottom,
  Key? key,
}) : super(key: key);