SemanticsHeader constructor

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

Implementation

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