TitleBar constructor

const TitleBar({
  1. Key? key,
  2. required RxChat? chat,
  3. required String title,
  4. double? height,
  5. void toggleFullscreen()?,
  6. bool fullscreen = false,
  7. void onFloating()?,
  8. void onSecondary()?,
  9. void onPrimary()?,
})

Implementation

const TitleBar({
  super.key,
  required this.chat,
  required this.title,
  this.height,
  this.toggleFullscreen,
  this.fullscreen = false,
  this.onFloating,
  this.onSecondary,
  this.onPrimary,
});