copyWith method

  1. @override
UpdateSavedAnimations copyWith({
  1. List<int>? animationIds,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

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