copyWith method

StickerFullTypeCustomEmoji copyWith({
  1. int? customEmojiId,
  2. bool? needsRepainting,
})

Implementation

StickerFullTypeCustomEmoji copyWith({
  int? customEmojiId,
  bool? needsRepainting,
}) => StickerFullTypeCustomEmoji(
  customEmojiId: customEmojiId ?? this.customEmojiId,
  needsRepainting: needsRepainting ?? this.needsRepainting,
);