copyWith method
GetAllStickerEmojis
copyWith({
- StickerType? stickerType,
- String? query,
- int? chatId,
- 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,
);