message property

String get message

Returns the message of the choice
It is the content of the messageData
Example:

final choice = response.choices.first;
print(choice.message); //prints the message of the choice

Implementation

String get message => messageData.content;