copyWith method

EditInlineMessageReplyMarkup copyWith({
  1. String? inlineMessageId,
  2. ReplyMarkup? replyMarkup,
})

Implementation

EditInlineMessageReplyMarkup copyWith({
  String? inlineMessageId,
  ReplyMarkup? replyMarkup,
}) => EditInlineMessageReplyMarkup(
  inlineMessageId: inlineMessageId ?? this.inlineMessageId,
  replyMarkup: replyMarkup ?? this.replyMarkup,
);