FastShadowLayout constructor

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

Implementation

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