SemanticsLink constructor

const SemanticsLink({
  1. Key? key,
  2. required Widget child,
  3. String? label,
  4. String? tooltip,
  5. VoidCallback? onTap,
  6. Map<String, String>? properties,
  7. bool testOnly = false,
})

Implementation

const SemanticsLink({
  super.key,
  required this.child,
  this.label,
  this.tooltip,
  this.onTap,
  this.properties,
  this.testOnly = false,
});