WindowHeader95 constructor

const WindowHeader95({
  1. Key? key,
  2. required String? title,
  3. void onClosePressed(
    1. BuildContext
    )?,
})

Implementation

const WindowHeader95({
  super.key,
  required this.title,
  this.onClosePressed,
});