messageData property
The message of the choice
It contains the message and metadata, like role
Example:
final choice = response.choices.first;
print(choice.message); //prints the message of the choice
Implementation
final GroqMessage messageData;