Conversation constructor

Conversation(
  1. Bot _bot, {
  2. String? name,
})

Creates a new conversation.

Implementation

Conversation(
  this._bot, {
  String? name,
}) : name = name ?? "conv-${_getRandomID(5)}";