WrapperModel constructor

const WrapperModel({
  1. WrapperType wrapperType = WrapperType.padded,
  2. EdgeInsets padding = const EdgeInsets.all(8),
  3. EdgeInsets? margin,
  4. double borderRadius = 8.0,
  5. Color? backgroundColor,
  6. Color? borderColor,
  7. double? borderWidth,
  8. double elevation = 4.0,
  9. double blurX = 8.0,
  10. double blurY = 8.0,
  11. Color? shadowLightColor,
  12. Color? shadowDarkColor,
  13. Gradient? gradient,
  14. Widget customWrapperBuilder(
    1. Widget child
    )?,
})

Implementation

const WrapperModel({
  this.wrapperType = WrapperType.padded,
  this.padding = const EdgeInsets.all(8),
  this.margin,
  this.borderRadius = 8.0,
  this.backgroundColor,
  this.borderColor,
  this.borderWidth,
  this.elevation = 4.0,
  this.blurX = 8.0,
  this.blurY = 8.0,
  this.shadowLightColor,
  this.shadowDarkColor,
  this.gradient,
  this.customWrapperBuilder,
});