ExcludeSemantics constructor

const ExcludeSemantics({Key key, bool excluding: true, Widget child })

Creates a widget that drops all the semantics of its descendants.

Implementation

const ExcludeSemantics({
  Key key,
  this.excluding = true,
  Widget child,
}) : assert(excluding != null),
      super(key: key, child: child);