copyWith method
Implementation
ClampSimulation copyWith({
Offset? clampOffset,
double? duration,
}) {
return ClampSimulation(
clampOffset: clampOffset ?? this.clampOffset,
duration: duration ?? this.duration,
);
}
ClampSimulation copyWith({
Offset? clampOffset,
double? duration,
}) {
return ClampSimulation(
clampOffset: clampOffset ?? this.clampOffset,
duration: duration ?? this.duration,
);
}