NiceSemanticWrapper constructor

const NiceSemanticWrapper({
  1. Key? key,
  2. required Widget child,
  3. String? label,
  4. String? hint,
  5. String? value,
  6. bool? button,
  7. bool? header,
  8. bool? link,
  9. bool? enabled,
  10. bool? focused,
  11. bool? selected,
  12. bool? expanded,
  13. VoidCallback? onTap,
  14. VoidCallback? onLongPress,
  15. bool excludeSemantics = false,
})

Implementation

const NiceSemanticWrapper({
  super.key,
  required this.child,
  this.label,
  this.hint,
  this.value,
  this.button,
  this.header,
  this.link,
  this.enabled,
  this.focused,
  this.selected,
  this.expanded,
  this.onTap,
  this.onLongPress,
  this.excludeSemantics = false,
});