SemanticsProperties constructor

const SemanticsProperties({
  1. String? label,
  2. String? hint,
  3. bool? button,
  4. bool? enabled,
  5. bool? modal,
  6. bool? liveRegion,
  7. VoidCallback? onTap,
})

Implementation

const SemanticsProperties({
  this.label,
  this.hint,
  this.button,
  this.enabled,
  this.modal,
  this.liveRegion,
  this.onTap,
});