RegisterResponse.fromJson constructor
Implementation
factory RegisterResponse.fromJson(Map<String, dynamic> json) => RegisterResponse(
ok: json["ok"],
token: json["token"],
participantData: Participant.fromJson(json["participant_data"]),
message: json["message"],
);