copyWith method
UpdateNewInlineQuery
copyWith({
- int? id,
- int? senderUserId,
- Location? userLocation,
- ChatType? chatType,
- String? query,
- String? offset,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateNewInlineQuery copyWith({
int? id,
int? senderUserId,
Location? userLocation,
ChatType? chatType,
String? query,
String? offset,
dynamic extra,
int? clientId,
}) => 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,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);