AnimatedItemsScope constructor

const AnimatedItemsScope({
  1. Key? key,
  2. required Widget child,
  3. Duration? delay,
})

Implementation

const AnimatedItemsScope({
  Key? key,
  required this.child,
  this.delay,
}) : super(key: key);