responseArray property

  1. @override
List<String> get responseArray
override

The core of the LLM's response from this query. If the asynchronous API is used, this response value should be chained with subsequent values until the LLM emits one with isDone set to true.

Implementation

@override
List<String> get responseArray => _responseArray ??= _getResponseArray();