Wrapper constructor

const Wrapper({
  1. Key? key,
  2. required Widget child,
  3. WrapperBuilder? builder,
  4. bool wrap = true,
  5. bool maintainStructure = false,
})

Implementation

const Wrapper({
  super.key,
  required this.child,
  this.builder,
  this.wrap = true,
  this.maintainStructure = false,
});