AtomicAccessibleButton constructor

const AtomicAccessibleButton({
  1. Key? key,
  2. required VoidCallback? onPressed,
  3. required Widget child,
  4. String? semanticLabel,
  5. String? tooltip,
  6. bool excludeSemantics = false,
})

Implementation

const AtomicAccessibleButton({
  super.key,
  required this.onPressed,
  required this.child,
  this.semanticLabel,
  this.tooltip,
  this.excludeSemantics = false,
});