LastMessage.fromJson constructor
Implementation
factory LastMessage.fromJson(Map<String, dynamic> json) => LastMessage(
body: json["body"],
createdAt: json["createdAt"] == null
? null
: DateTime.parse(json["createdAt"]),
createdBy: json["createdBy"],
);