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