MessageWithCID constructor
MessageWithCID({
- required String cid,
- String? chatId,
- String? link,
- required String fromCAIP10,
- required String toCAIP10,
- required String fromDID,
- required String toDID,
- required String messageType,
- required String messageContent,
- required String signature,
- required String sigType,
- int? timestamp,
- required String encType,
- required String encryptedSecret,
- String? verificationProof,
Implementation
MessageWithCID({
required this.cid,
this.chatId,
this.link,
required this.fromCAIP10,
required this.toCAIP10,
required this.fromDID,
required this.toDID,
required this.messageType,
required this.messageContent,
required this.signature,
required this.sigType,
this.timestamp,
required this.encType,
required this.encryptedSecret,
this.verificationProof,
});