FadeInUp constructor
const
FadeInUp({})
Creates a FadeInUp animation widget.
The child
parameter is required, while duration
, delay
, and offset
are optional with default values.
Implementation
const FadeInUp({
super.key,
required super.child,
super.duration,
super.delay,
super.offset,
});