Hide constructor

const Hide({
  1. Key? key,
  2. required Widget child,
})

Creates a Hide widget with the specified child.

Implementation

const Hide({
  Key? key,
  required this.child,
}) : super(key: key);