AppBarLayout constructor

const AppBarLayout({
  1. Key? key,
  2. required String title,
  3. bool showGoBack = false,
  4. bool showShare = false,
  5. required Widget child,
})

Implementation

const AppBarLayout({
  Key? key,
  required this.title,
  this.showGoBack = false,
  this.showShare = false,
  required this.child,
}) : super(key: key);