WindowControlButton constructor

const WindowControlButton({
  1. Key? key,
  2. VoidCallback? onTap,
  3. required Widget child,
})

Implementation

const WindowControlButton({
  Key? key,
  this.onTap,
  required this.child,
}) : super(key: key);