copyWith method
Returns a copy of this FAnimatedThemeMotion with the given properties replaced.
Parameters
- FAnimatedThemeMotion.duration - The animation's duration.
- FAnimatedThemeMotion.curve - The animation's curve.
Implementation
@useResult
FAnimatedThemeMotion copyWith({Duration? duration, Curve? curve}) =>
FAnimatedThemeMotion(duration: duration ?? this.duration, curve: curve ?? this.curve);