hidden method

Widget hidden(
  1. bool hidden
)

Implementation

Widget hidden(bool hidden) {
  return hidden ? Opacity(opacity: 0, child: this).disabled(true) : this;
}