ChatModel constructor
ChatModel({})
Implementation
ChatModel({
required this.userId,
required this.peerId,
required this.peerName,
this.peerOnline = false,
this.mostRecentMessageId,
this.lastModified,
this.createdAt,
this.reference,
}) {
createdAt ??= DateTime.now();
}