AccessibilityTools constructor

const AccessibilityTools({
  1. Key? key,
  2. required Widget? child,
  3. MinimumTapAreas? minimumTapAreas = MinimumTapAreas.material,
  4. bool checkSemanticLabels = true,
  5. bool checkMissingInputLabels = true,
  6. bool checkFontOverflows = false,
})

Implementation

const AccessibilityTools({
  super.key,
  required this.child,
  this.minimumTapAreas = MinimumTapAreas.material,
  this.checkSemanticLabels = true,
  this.checkMissingInputLabels = true,
  this.checkFontOverflows = false,
});