copyWith method
Implementation
@override
UpdateSavedAnimations copyWith({
List<int>? animationIds,
dynamic extra,
int? clientId,
}) => UpdateSavedAnimations(
animationIds: animationIds ?? this.animationIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);