copyWith method
Implementation
GetStickers copyWith({
StickerType? stickerType,
String? query,
int? limit,
int? chatId,
}) =>
GetStickers(
stickerType: stickerType ?? this.stickerType,
query: query ?? this.query,
limit: limit ?? this.limit,
chatId: chatId ?? this.chatId,
);