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