ShadowedContainer constructor

const ShadowedContainer({
  1. Key? key,
  2. double? height,
  3. Color? color,
  4. EdgeInsets? padding,
  5. Widget? child,
})

Implementation

const ShadowedContainer({
  Key? key,
  this.height,
  this.color,
  this.padding,
  this.child,
}) : super(key: key);