copyWith method

SetStickerEmojis copyWith({
  1. InputFile? sticker,
  2. String? emojis,
})

Implementation

SetStickerEmojis copyWith({
  InputFile? sticker,
  String? emojis,
}) =>
    SetStickerEmojis(
      sticker: sticker ?? this.sticker,
      emojis: emojis ?? this.emojis,
    );