copyWith method

SetCustomEmojiStickerSetThumbnail copyWith({
  1. String? name,
  2. int? customEmojiId,
})

Implementation

SetCustomEmojiStickerSetThumbnail copyWith({
  String? name,
  int? customEmojiId,
}) =>
    SetCustomEmojiStickerSetThumbnail(
      name: name ?? this.name,
      customEmojiId: customEmojiId ?? this.customEmojiId,
    );