CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. String title = '',
  3. bool showBackButton = true,
  4. VoidCallback? onBack,
})

Implementation

const CustomAppBar({
  Key? key,
  this.title = '',
  this.showBackButton = true,
  this.onBack,
}) : super(key: key);