getResponse abstract method
Retrieve a model response by ID
This allows you to fetch a previously created response using its ID. Useful for stateful conversations and response chaining.
Implementation
Future<ChatResponse> getResponse(
String responseId, {
List<String>? include,
int? startingAfter,
bool stream = false,
});