DecoratedMaximizeButton constructor

const DecoratedMaximizeButton({
  1. Key? key,
  2. ThemeType? type = ThemeType.auto,
  3. required VoidCallback? onPressed,
  4. double? width,
  5. double? height,
})

Implementation

const DecoratedMaximizeButton({
  Key? key,
  this.type = ThemeType.auto,
  required this.onPressed,
  this.width,
  this.height,
}) : super(key: key);