GetBlogParticipant.fromJson constructor

GetBlogParticipant.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetBlogParticipant.fromJson(Map<String, dynamic> json) => GetBlogParticipant(
    id: json["_id"],
    email: json["email"],
    name: json["name"],
    avatar: json["avatar"],
    uid: json["uid"],
    uidType: json["uid_type"],
    state: json["state"],
);