copyWith method

GetAllStickerEmojis copyWith({
  1. StickerType? stickerType,
  2. String? query,
  3. int? chatId,
  4. bool? returnOnlyMainEmoji,
})

Implementation

GetAllStickerEmojis copyWith({
  StickerType? stickerType,
  String? query,
  int? chatId,
  bool? returnOnlyMainEmoji,
}) => GetAllStickerEmojis(
  stickerType: stickerType ?? this.stickerType,
  query: query ?? this.query,
  chatId: chatId ?? this.chatId,
  returnOnlyMainEmoji: returnOnlyMainEmoji ?? this.returnOnlyMainEmoji,
);