copyWith method
Implementation
CheckWebAppFileDownload copyWith({
int? botUserId,
String? fileName,
String? url,
}) => CheckWebAppFileDownload(
botUserId: botUserId ?? this.botUserId,
fileName: fileName ?? this.fileName,
url: url ?? this.url,
);