InqvineConditionalAutoHide constructor

const InqvineConditionalAutoHide({
  1. required Widget child,
  2. bool isShown = true,
  3. Key? key,
})

Implementation

const InqvineConditionalAutoHide({
  required this.child,
  this.isShown = true,
  Key? key,
}) : super(key: key);