TextIconButtonDetailed constructor

const TextIconButtonDetailed({
  1. required IconData icon,
  2. required String text,
  3. required Color selectedColor,
  4. required Color disabledColor,
  5. required String description,
  6. double? width,
  7. EdgeInsets? margin,
  8. VoidCallback? onPressed,
  9. Color? optionIconColor,
  10. TextStyle? optionTitleStyle,
  11. TextStyle? optionDescriptionStyle,
  12. bool isSelected = false,
  13. Key? key,
})

Implementation

const TextIconButtonDetailed({
  required this.icon,
  required this.text,
  required this.selectedColor,
  required this.disabledColor,
  required this.description,
  this.width,
  this.margin,
  this.onPressed,
  this.optionIconColor,
  this.optionTitleStyle,
  this.optionDescriptionStyle,
  this.isSelected = false,
  final Key? key,
}) : super(key: key);