ConversationCreateRequest constructor

ConversationCreateRequest({
  1. required String topic,
  2. String? message,
  3. ItemBody? body,
  4. List<Recipient>? recipients,
})

Implementation

ConversationCreateRequest({
  required this.topic,
  this.message,
  this.body,
  this.recipients,
});