copyWith method
Implementation
ChartAnimationOptions copyWith({Duration? duration, Curve? curve}) {
return ChartAnimationOptions(
duration: duration ?? this.duration,
curve: curve ?? this.curve,
);
}
ChartAnimationOptions copyWith({Duration? duration, Curve? curve}) {
return ChartAnimationOptions(
duration: duration ?? this.duration,
curve: curve ?? this.curve,
);
}