Member.fromJson constructor
Implementation
factory Member.fromJson(Map<String, dynamic> json) {
final member = _$MemberFromJson(json)
..set(SendbirdChat().chat); // Set the singleton chat
member.restrictionInfo = RestrictionInfo.fromJson(json);
return member;
}