Windows constructor
const
Windows({
- Key? key,
- required int index,
- required Widget body,
- String? title = "Flutter Toolman Windows",
- double? height = 350,
- double? width = 350,
- bool? draggable = true,
- bool? isFullscreen = false,
- Widget? header,
- BorderProperty? border = const BorderProperty(color: BorderColor.def(), borderThickness: 1),
- Offset? position = const Offset(0, 0),
Implementation
const Windows({
Key? key,
required this.index,
required this.body,
this.title = "Flutter Toolman Windows",
this.height = 350,
this.width = 350,
this.draggable = true,
this.isFullscreen = false,
this.header,
this.border = const BorderProperty(
color: BorderColor.def(),
borderThickness: 1,
),
this.position = const Offset(0, 0),
}) : super(key: key);