copyWith method

GetLoginUrlInfo copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? buttonId,
})

Implementation

GetLoginUrlInfo copyWith({
  int? chatId,
  int? messageId,
  int? buttonId,
}) =>
    GetLoginUrlInfo(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      buttonId: buttonId ?? this.buttonId,
    );