copyWith method
Implementation
GetWebAppLinkUrl copyWith({
int? chatId,
int? botUserId,
String? webAppShortName,
String? startParameter,
bool? allowWriteAccess,
WebAppOpenParameters? parameters,
}) => GetWebAppLinkUrl(
chatId: chatId ?? this.chatId,
botUserId: botUserId ?? this.botUserId,
webAppShortName: webAppShortName ?? this.webAppShortName,
startParameter: startParameter ?? this.startParameter,
allowWriteAccess: allowWriteAccess ?? this.allowWriteAccess,
parameters: parameters ?? this.parameters,
);