RegisterResponse constructor

RegisterResponse({
  1. required String ok,
  2. required String token,
  3. required Participant participantData,
  4. required String message,
})

Implementation

RegisterResponse({
  required this.ok,
  required this.token,
  required this.participantData,
  required this.message,
});