fadeInSlideUp method
Implementation
Widget fadeInSlideUp(
{int? nextRunDelay, AnimationIntervalController? intervalController}) {
return hubbleAnimate(
nextRunDelay: nextRunDelay,
intervalController: intervalController,
effects: [
FadeEffect(duration: NumDurationExtensions(600).milliseconds),
SlideEffect(
begin: const Offset(0, .1),
duration: NumDurationExtensions(300).milliseconds),
],
);
}