AuthResponse constructor

AuthResponse({
  1. required String token,
  2. required String userId,
  3. required String email,
  4. required String name,
  5. required String role,
  6. String? serviceId,
})

Implementation

AuthResponse({
  required this.token,
  required this.userId,
  required this.email,
  required this.name,
  required this.role,
  this.serviceId,
});