ChatUserModal.fromJson constructor

ChatUserModal.fromJson(
  1. 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,
  );
}