LoginResponse constructor

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

Implementation

LoginResponse({
  required this.ok,
  required this.token,
  required this.participant,
  required this.message,
});