RegisterResponse.fromJson constructor

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

Implementation

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