copyWith method

GetLoginUrl copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? buttonId,
  4. bool? allowWriteAccess,
})

Implementation

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