copyWith method
Implementation
AddOffer copyWith({
int? chatId,
int? messageId,
MessageSendOptions? options,
}) => AddOffer(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
options: options ?? this.options,
);
AddOffer copyWith({
int? chatId,
int? messageId,
MessageSendOptions? options,
}) => AddOffer(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
options: options ?? this.options,
);