copyWith method
Create a copy with modified parameters
Implementation
FSStaggeredFadeIn copyWith({
Key? key,
List<Widget>? children,
Duration? duration,
Duration? staggerDelay,
Curve? curve,
bool? autoPlay,
bool? maintainState,
String? semanticLabel,
bool? respectSystemPreferences,
}) {
return FSStaggeredFadeIn(
key: key ?? this.key,
children: children ?? this.children,
duration: duration ?? this.duration,
staggerDelay: staggerDelay ?? this.staggerDelay,
curve: curve ?? this.curve,
autoPlay: autoPlay ?? this.autoPlay,
maintainState: maintainState ?? this.maintainState,
semanticLabel: semanticLabel ?? this.semanticLabel,
respectSystemPreferences:
respectSystemPreferences ?? this.respectSystemPreferences,
);
}