BlockSemantics constructor

const BlockSemantics({Key key, bool blocking: true, Widget child })

Creates a widget that excludes the semantics of all widgets painted before it in the same semantic container.

Implementation

const BlockSemantics({ Key key, this.blocking = true, Widget child }) : super(key: key, child: child);