Wrapper constructor
const
Wrapper({
- Key? key,
- required Widget child,
- WrapperBuilder? builder,
- bool wrap = true,
- bool maintainStructure = false,
Creates a Wrapper widget.
The child parameter is required. The wrap parameter defaults to true,
and maintainStructure defaults to false.
Implementation
const Wrapper({
super.key,
required this.child,
this.builder,
this.wrap = true,
this.maintainStructure = false,
});