TitleWidget constructor

const TitleWidget({
  1. Key? key,
  2. String? title,
  3. bool? titleIsCenter = false,
  4. Color? backgroundColor,
  5. List<Widget>? actions,
  6. num? actionSpacing,
  7. Widget? tWidget,
  8. num? height,
  9. Brightness? brightness,
})

Implementation

const TitleWidget({
  Key? key,
  this.title,
  this.titleIsCenter = false,
  this.backgroundColor,
  this.actions,
  this.actionSpacing,
  this.tWidget,
  this.height,
  this.brightness,
}) : super(key: key);