IconTextButton constructor

const IconTextButton({
  1. Key? key,
  2. required IconData icon,
  3. required VoidCallback onPressed,
  4. required String textDisplay,
  5. required double width,
  6. required double height,
  7. TextStyle? textStyle,
  8. Color? color = const Color(0xFF000000),
})

Implementation

const IconTextButton({
  Key? key,
  required this.icon,
  required this.onPressed,
  required this.textDisplay,
  required this.width,
  required this.height,
  this.textStyle,
  this.color = const Color(0xFF000000),
}) : super(key: key);