cVisible method

Widget cVisible(
  1. bool visible
)

Set the visibility of the widget.

visible specifies whether the widget should be visible or not.

Implementation

Widget cVisible(bool visible) => Visibility(
      visible: visible,
      child: this,
    );