WindowsBorderBox constructor

const WindowsBorderBox({
  1. Key? key,
  2. required double windowsWidth,
  3. required double windowsHeight,
  4. required double minWidth,
  5. required double minHeight,
  6. required GlobalKey<State<StatefulWidget>> parentKey,
  7. required OverlayState overlayState,
  8. required BorderProperty borderProperty,
  9. BorderClickCallback? onClick,
  10. BorderDragCallback? onDrag,
  11. BorderEndCallback? onEnd,
})

Implementation

const WindowsBorderBox({
  Key? key,
  required this.windowsWidth,
  required this.windowsHeight,
  required this.minWidth,
  required this.minHeight,
  required this.parentKey,
  required this.overlayState,
  required this.borderProperty,
  this.onClick,
  this.onDrag,
  this.onEnd,
}) : super(key: key);