AnimateIfVisibleWrapper constructor
Implementation
const AnimateIfVisibleWrapper({
@required this.child,
this.delay = Duration.zero,
this.showItemInterval = const Duration(milliseconds: 150),
this.controller,
Key key,
}) : assert(delay != null),
assert(showItemInterval != null),
super(key: key);