ChatUserModal.fromJson constructor
ChatUserModal.fromJson(
- Map json
Implementation
factory ChatUserModal.fromJson(Map json){
return ChatUserModal(
userId: json['userId']??'sampleId',
name: json['name']??'Dummy name',
profileImage: json['profileImage'],
deviceTokens: json['deviceTokens']??[],
fullData: json,
);
}