Skip to main content

build method

Widget build (BuildContext context)

<span class="feature">override</span>

<p>build the Plugin combining local <code>visibility</code> property and <code>serverVisible</code> property</p>

Implementation

@override
Widget build(BuildContext context) \{
var serverVisible = false;
serverVisible = checkFromPluginList();
return serverVisible || visible ? child! : Container();
\}