copyWith method
Implementation
GetInlineQueryResults copyWith({
int? botUserId,
int? chatId,
Location? userLocation,
String? query,
String? offset,
}) => GetInlineQueryResults(
botUserId: botUserId ?? this.botUserId,
chatId: chatId ?? this.chatId,
userLocation: userLocation ?? this.userLocation,
query: query ?? this.query,
offset: offset ?? this.offset,
);