CommunityUser.fromJson constructor
Implementation
factory CommunityUser.fromJson(Map<String, dynamic> json) {
return CommunityUser(
id: readInt(json['id']),
name: json['name']?.toString() ?? '',
email: json['email']?.toString() ?? '',
);
}