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