fromJson static method

MessageWithCID fromJson(
  1. Map<String, dynamic> json
)

Implementation

static MessageWithCID fromJson(Map<String, dynamic> json) {
  return MessageWithCID(
    cid: json['cid'],
    chatId: json['chatId'],
    link: json['link'],
    fromCAIP10: json['fromCAIP10'],
    toCAIP10: json['toCAIP10'],
    fromDID: json['fromDID'],
    toDID: json['toDID'],
    messageType: json['messageType'],
    messageContent: json['messageContent'],
    signature: json['signature'],
    sigType: json['sigType'],
    timestamp: json['timestamp'],
    encType: json['encType'],
    encryptedSecret: json['encryptedSecret'],
    verificationProof: json['verificationProof'],
  );
}