copyWith method
Implementation
UpdateNewInlineQuery copyWith({
int? id,
int? senderUserId,
Location? userLocation,
ChatType? chatType,
String? query,
String? offset,
}) => UpdateNewInlineQuery(
id: id ?? this.id,
senderUserId: senderUserId ?? this.senderUserId,
userLocation: userLocation ?? this.userLocation,
chatType: chatType ?? this.chatType,
query: query ?? this.query,
offset: offset ?? this.offset,
);