RecentChat.fromJson constructor
Converts a RecentChat instance into a JSON object.
Implementation
factory RecentChat.fromJson(Map<String, dynamic> json) => RecentChat(
data: json["data"] == null
? []
: List<RecentChatData>.from(
json["data"]!.map((x) => RecentChatData.fromJson(x))),
);