NiceOverlapStack constructor

const NiceOverlapStack({
  1. Key? key,
  2. required List<Widget> children,
  3. double overlapFactor = 0.3,
  4. Axis direction = Axis.horizontal,
  5. bool reverse = false,
})

Implementation

const NiceOverlapStack({
  super.key,
  required this.children,
  this.overlapFactor = 0.3,
  this.direction = Axis.horizontal,
  this.reverse = false,
});