copyWith method
Implementation
@override
UpdateAnimationSearchParameters copyWith({
String? provider,
List<String>? emojis,
dynamic extra,
int? clientId,
}) => UpdateAnimationSearchParameters(
provider: provider ?? this.provider,
emojis: emojis ?? this.emojis,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);