copyWith method

FSStaggeredFadeIn copyWith({
  1. Key? key,
  2. List<Widget>? children,
  3. Duration? duration,
  4. Duration? staggerDelay,
  5. Curve? curve,
  6. bool? autoPlay,
  7. bool? maintainState,
  8. String? semanticLabel,
  9. bool? respectSystemPreferences,
})

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,
  );
}