ListWidgetAnimation constructor
ListWidgetAnimation({})
Implementation
ListWidgetAnimation({
Key? key,
required this.children,
this.offset = 0.2,
this.curve = Curves.easeIn,
this.direction = Direction.vertical,
this.enableLazyLoading = false,
this.delayBetween = const Duration(milliseconds: 300),
this.animationDuration = const Duration(milliseconds: 500)
}) : assert(children.isNotEmpty), super(key: key);