show method

Visibility show(
  1. bool isVisible, {
  2. bool maintainSize = false,
})

Creates a Visibility widget with the current widget as its child and sets its visibility based on the passed condition

Implementation

Visibility show(bool isVisible, {bool maintainSize = false}) =>
    _visibility(isVisible = true, maintainSize);