copyWith method

AnimatedEmoji copyWith({
  1. Sticker? sticker,
  2. int? fitzpatrickType,
  3. File? sound,
  4. dynamic extra,
  5. int? clientId,
})

Implementation

AnimatedEmoji copyWith({
  Sticker? sticker,
  int? fitzpatrickType,
  File? sound,
  dynamic extra,
  int? clientId,
}) => AnimatedEmoji(
  sticker: sticker ?? this.sticker,
  fitzpatrickType: fitzpatrickType ?? this.fitzpatrickType,
  sound: sound ?? this.sound,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);