copyWith method

Animations copyWith({
  1. List<Animation>? animations,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

Animations copyWith({
  List<Animation>? animations,
  dynamic extra,
  int? clientId,
}) => Animations(
  animations: animations ?? this.animations,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);