BackdropToggleButton constructor

const BackdropToggleButton({
  1. Key? key,
  2. AnimatedIconData icon = AnimatedIcons.close_menu,
  3. Color color = Colors.white,
})

Creates an instance of BackdropToggleButton.

Implementation

const BackdropToggleButton({
  Key? key,
  this.icon = AnimatedIcons.close_menu,
  this.color = Colors.white,
}) : super(key: key);