VelocityIconButton constructor

const VelocityIconButton({
  1. Key? key,
  2. required IconData icon,
  3. Color color = darkBlue,
  4. double size = 72,
  5. Brightness brightness = Brightness.dark,
  6. VoidCallback? onPressed,
})

Implementation

const VelocityIconButton({
  Key? key,
  required this.icon,
  this.color = darkBlue,
  this.size = 72,
  this.brightness = Brightness.dark,
  this.onPressed,
}) : super(key: key);