Semantics.fromProperties constructor

const Semantics.fromProperties(
  1. {Key? key,
  2. Widget? child,
  3. bool container = false,
  4. bool explicitChildNodes = false,
  5. bool excludeSemantics = false,
  6. bool blockUserActions = false,
  7. required SemanticsProperties properties}
)

Creates a semantic annotation using SemanticsProperties.

Implementation

const Semantics.fromProperties({
  super.key,
  super.child,
  this.container = false,
  this.explicitChildNodes = false,
  this.excludeSemantics = false,
  this.blockUserActions = false,
  required this.properties,
});