AppBarView constructor

const AppBarView({
  1. Key? key,
  2. required String? title,
  3. Widget? appBarEndActions,
  4. Widget? appBarStartActions,
})

Implementation

const AppBarView({
  super.key,
  required this.title,
  this.appBarEndActions,
  this.appBarStartActions,
});