ConversationKey constructor

const ConversationKey({
  1. required ChannelIdentity channel,
  2. required String conversationId,
  3. String? userId,
})

Implementation

const ConversationKey({
  required this.channel,
  required this.conversationId,
  this.userId,
});