ChatSessionWithMessage constructor

ChatSessionWithMessage({
  1. required String sessionId,
  2. List<ChatHistory> messages = const [],
})

Returns a new ChatSessionWithMessage instance.

Implementation

ChatSessionWithMessage({
  required this.sessionId,
  this.messages = const [],
});