AtomicStackedBody constructor

const AtomicStackedBody({
  1. Key? key,
  2. required Widget child,
  3. int stackCount = 2,
  4. double stackOffset = 8.0,
  5. Color? backgroundColor,
  6. List<Color>? stackColors,
  7. BorderRadius? borderRadius,
  8. EdgeInsetsGeometry? padding,
  9. BoxShadow? shadow,
})

Implementation

const AtomicStackedBody({
  super.key,
  required this.child,
  this.stackCount = 2,
  this.stackOffset = 8.0,
  this.backgroundColor,
  this.stackColors,
  this.borderRadius,
  this.padding,
  this.shadow,
});