FadeInBase constructor
const
FadeInBase({})
Creates a FadeInBase widget with configurable animation parameters.
child
is required and represents the widget that will be animated.
Optional parameters include duration
, delay
, and offset
.
Implementation
const FadeInBase({
super.key,
required this.child,
this.duration = const Duration(milliseconds: 220),
this.delay = const Duration(milliseconds: 0),
this.offset = 30.0,
});