copyWith method

SendTextMessageDraft copyWith({
  1. int? chatId,
  2. int? forumTopicId,
  3. int? draftId,
  4. FormattedText? text,
})

Implementation

SendTextMessageDraft copyWith({
  int? chatId,
  int? forumTopicId,
  int? draftId,
  FormattedText? text,
}) => SendTextMessageDraft(
  chatId: chatId ?? this.chatId,
  forumTopicId: forumTopicId ?? this.forumTopicId,
  draftId: draftId ?? this.draftId,
  text: text ?? this.text,
);