ConditionalWrapper constructor
A widget that conditionally wraps its child with a wrapper widget.
If condition is false, just the child will be returned.
Implementation
const ConditionalWrapper({super.key, required this.child, required this.condition, required this.wrapper});