copyWith method

InputMessageSticker copyWith({
  1. InputSticker? sticker,
  2. String? emoji,
})

Implementation

InputMessageSticker copyWith({InputSticker? sticker, String? emoji}) =>
    InputMessageSticker(
      sticker: sticker ?? this.sticker,
      emoji: emoji ?? this.emoji,
    );