WindowCaption constructor

const WindowCaption({
  1. Key? key,
  2. Widget? title,
  3. Color? backgroundColor,
  4. Brightness? brightness,
})

Implementation

const WindowCaption({
  super.key,
  this.title,
  this.backgroundColor,
  this.brightness,
});