MinimizeButton constructor

const MinimizeButton({
  1. Key? key,
  2. required bool onMinimize(
    1. double size
    ),
  3. double? max,
  4. Color color = Colors.white,
})

Implementation

const MinimizeButton({
  Key? key,
  required this.onMinimize,
  this.max,
  this.color = Colors.white,
}) : super(key: key);