copyWith method
UpdateNewChosenInlineResult
copyWith({
- int? senderUserId,
- Location? userLocation,
- String? query,
- String? resultId,
- String? inlineMessageId,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateNewChosenInlineResult copyWith({
int? senderUserId,
Location? userLocation,
String? query,
String? resultId,
String? inlineMessageId,
dynamic extra,
int? clientId,
}) =>
UpdateNewChosenInlineResult(
senderUserId: senderUserId ?? this.senderUserId,
userLocation: userLocation ?? this.userLocation,
query: query ?? this.query,
resultId: resultId ?? this.resultId,
inlineMessageId: inlineMessageId ?? this.inlineMessageId,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);