copyWith method

  1. @override
InputStickerAnimated copyWith({
  1. InputFile? sticker,
  2. String? emojis,
})
override

Implementation

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