CustomAppBarSignout constructor

const CustomAppBarSignout({
  1. Key? key,
  2. required Function onSignout,
  3. Widget? titleWidget,
})

Implementation

const CustomAppBarSignout({
  super.key,
  required this.onSignout,
  this.titleWidget
});