ChatMessage.fromJson constructor
Implementation
factory ChatMessage.fromJson(Map<String, dynamic> json, String smsId) {
return ChatMessage(
id: smsId,
text: json['text'],
url: json['url'] ?? "",
ownerId: json['ownerId'],
ownerName: json['ownerName'],
ownerProfile: json['ownerProfile'],
createdOn: json['createdOn'].toDate(),
);
}