changeVisibility method

Widget changeVisibility({
  1. required bool isVisible,
})

Implementation

Widget changeVisibility({required bool isVisible}) {
  if (isVisible) {
    return this;
  } else {
    return Container();
  }
}