FastShadowLayout constructor

const FastShadowLayout({
  1. Key? key,
  2. required Widget child,
  3. double borderRadius = kFastBorderRadius,
  4. double blurRadius = kFastBlurRadius,
  5. Color? backgroundColor,
  6. double? spreadRadius,
  7. Offset? shadowOffset,
  8. Color? shadowColor,
  9. EdgeInsets? padding,
})

Implementation

const FastShadowLayout({
  super.key,
  required this.child,
  this.borderRadius = kFastBorderRadius,
  this.blurRadius = kFastBlurRadius,
  this.backgroundColor,
  this.spreadRadius,
  this.shadowOffset,
  this.shadowColor,
  this.padding,
});