ifShow method

Widget ifShow(
  1. bool show
)

Implementation

Widget ifShow(bool show) {
  return IfWidget(expression: () => show, trueBuild: () => this);
}