copyWith method

  1. @override
UpdateAnimationSearchParameters copyWith({
  1. String? provider,
  2. List<String>? emojis,
  3. dynamic extra,
  4. int? clientId,
})
override

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,
);