copyWith method

  1. @useResult
FCircularProgressMotion copyWith({
  1. Duration? duration,
  2. Curve? curve,
  3. Animatable<double>? tween,
})

Returns a copy of this FCircularProgressMotion with the given properties replaced.

Parameters

Implementation

@useResult
FCircularProgressMotion copyWith({Duration? duration, Curve? curve, Animatable<double>? tween}) =>
    FCircularProgressMotion(
      duration: duration ?? this.duration,
      curve: curve ?? this.curve,
      tween: tween ?? this.tween,
    );