ComTitleBar constructor

const ComTitleBar({
  1. Key? key,
  2. Widget? title,
  3. Widget? leading,
  4. List<Widget>? actions,
  5. double? toolbarHeight,
  6. Color? backgroundColor,
})

Implementation

const ComTitleBar({
  super.key,
  this.title,
  this.leading,
  this.actions,
  this.toolbarHeight,
  this.backgroundColor,
});